summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh.c
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2001-12-27 20:39:59 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2001-12-27 20:39:59 +0000
commitd5db7d8fc2291d93e995c0fb4298deedd166b337 (patch)
tree627cc7cf07e57992daac70fa54b50d696fe3b773 /usr.bin/ssh/ssh.c
parent64f8954a83d78ce4dd0748ce2ab9825484de25d1 (diff)
get rid of packet_integrity_check, use packet_done() instead.
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r--usr.bin/ssh/ssh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c
index e76607991de..9de0f94593d 100644
--- a/usr.bin/ssh/ssh.c
+++ b/usr.bin/ssh/ssh.c
@@ -39,7 +39,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: ssh.c,v 1.153 2001/12/20 22:50:24 djm Exp $");
+RCSID("$OpenBSD: ssh.c,v 1.154 2001/12/27 20:39:58 markus Exp $");
#include <openssl/evp.h>
#include <openssl/err.h>
@@ -956,7 +956,7 @@ ssh_session(void)
/* Read response from the server. */
type = packet_read(&plen);
- packet_integrity_check(plen, 0, type);
+ packet_done();
if (type != SSH_SMSG_SUCCESS)
log("Warning: Remote host denied authentication agent forwarding.");
}