crypt: Rename to packet_crypt.

This commit is contained in:
Andreas Schneider
2011-09-17 20:05:58 +02:00
parent acfc8ea83f
commit b785014a15
5 changed files with 20 additions and 18 deletions

View File

@@ -82,7 +82,6 @@ set(libssh_SRCS
client.c
config.c
connect.c
crypt.c
dh.c
ecdh.c
error.c
@@ -99,6 +98,7 @@ set(libssh_SRCS
misc.c
options.c
packet.c
packet_crypt.c
pcap.c
pki.c
poll.c

View File

@@ -111,7 +111,7 @@ unsigned char *packet_encrypt(ssh_session session, void *data, uint32_t len) {
seq = ntohl(session->send_seq);
crypto = session->current_crypto->out_cipher;
ssh_log(session, SSH_LOG_PACKET,
ssh_log(session, SSH_LOG_PACKET,
"Encrypting packet with seq num: %d, len: %d",
session->send_seq,len);