summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-01-22 23:11:40 +1100
committerDamien Miller <djm@mindrot.org>2002-01-22 23:11:40 +1100
commit48b03fc5460390318e94462707182b72dfaba91f (patch)
tree5fca9bcb09bab53083b274e0121a92dc8c1fbb16 /ssh.c
parent66823cddbe80d1d22ac44d503b8c121f071e7105 (diff)
- markus@cvs.openbsd.org 2001/12/27 20:39:58
[auth1.c auth-rsa.c channels.c clientloop.c packet.c packet.h serverloop.c session.c ssh.c sshconnect1.c sshd.c ttymodes.c] get rid of packet_integrity_check, use packet_done() instead.
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ssh.c b/ssh.c
index b6728f4dc..76d45c96a 100644
--- a/ssh.c
+++ b/ssh.c
@@ -39,7 +39,7 @@
39 */ 39 */
40 40
41#include "includes.h" 41#include "includes.h"
42RCSID("$OpenBSD: ssh.c,v 1.154 2001/12/27 20:39:58 markus Exp $"); 42RCSID("$OpenBSD: ssh.c,v 1.155 2001/12/28 12:14:27 markus Exp $");
43 43
44#include <openssl/evp.h> 44#include <openssl/evp.h>
45#include <openssl/err.h> 45#include <openssl/err.h>
@@ -976,7 +976,7 @@ ssh_session(void)
976 976
977 /* Read response from the server. */ 977 /* Read response from the server. */
978 type = packet_read(&plen); 978 type = packet_read(&plen);
979 packet_done(); 979 packet_check_eom();
980 if (type != SSH_SMSG_SUCCESS) 980 if (type != SSH_SMSG_SUCCESS)
981 log("Warning: Remote host denied authentication agent forwarding."); 981 log("Warning: Remote host denied authentication agent forwarding.");
982 } 982 }
@@ -1023,7 +1023,7 @@ client_subsystem_reply(int type, int plen, u_int32_t seq, void *ctxt)
1023 len = buffer_len(&command); 1023 len = buffer_len(&command);
1024 if (len > 900) 1024 if (len > 900)
1025 len = 900; 1025 len = 900;
1026 packet_done(); 1026 packet_check_eom();
1027 if (type == SSH2_MSG_CHANNEL_FAILURE) 1027 if (type == SSH2_MSG_CHANNEL_FAILURE)
1028 fatal("Request for subsystem '%.*s' failed on channel %d", 1028 fatal("Request for subsystem '%.*s' failed on channel %d",
1029 len, (u_char *)buffer_ptr(&command), id); 1029 len, (u_char *)buffer_ptr(&command), id);