diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2010-01-24 22:30:43 +0100 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2010-01-24 22:30:43 +0100 |
commit | 3465b592e717836709544e07e3a14c13c66e8444 (patch) | |
tree | cfaaf7d3f429b1fd4d60aee3257eae18e0cef665 /libssh/packet1.c | |
parent | ca499a54956ca778835171688d0d79969aa74dd5 (diff) | |
download | libssh-3465b592e717836709544e07e3a14c13c66e8444.tar.gz libssh-3465b592e717836709544e07e3a14c13c66e8444.tar.xz libssh-3465b592e717836709544e07e3a14c13c66e8444.zip |
Few function name changes
Diffstat (limited to 'libssh/packet1.c')
-rw-r--r-- | libssh/packet1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/packet1.c b/libssh/packet1.c index 49e4fdf..ec4f99c 100644 --- a/libssh/packet1.c +++ b/libssh/packet1.c @@ -216,7 +216,7 @@ int ssh_packet_socket_callback1(const void *data, size_t receivedlen, void *user session->recv_seq++; /* We don't want to rewrite a new packet while still executing the packet callbacks */ session->packet_state = PACKET_STATE_PROCESSING; - packet_translate(session); + ssh_packet_parse_type(session); /* execute callbacks */ ssh_packet_process(session, session->in_packet.type); session->packet_state = PACKET_STATE_INIT; |