diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-12-28 12:14:28 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-12-28 12:14:28 +0000 |
commit | 0e123ba3ffef859b994237fb0b808126ffb389c3 (patch) | |
tree | 136b69db824c69d03f0eb6ff6c249ea0472db5a4 /usr.bin/ssh/kex.c | |
parent | 99c4f1844a2a60b6b3d2ccf9d878131d3619c85d (diff) |
s/packet_done/packet_check_eom/ (end-of-message); ok djm@
Diffstat (limited to 'usr.bin/ssh/kex.c')
-rw-r--r-- | usr.bin/ssh/kex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/kex.c b/usr.bin/ssh/kex.c index 8e3d83befde..e4163214de1 100644 --- a/usr.bin/ssh/kex.c +++ b/usr.bin/ssh/kex.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: kex.c,v 1.38 2001/12/20 22:50:24 djm Exp $"); +RCSID("$OpenBSD: kex.c,v 1.39 2001/12/28 12:14:27 markus Exp $"); #include <openssl/crypto.h> @@ -187,7 +187,7 @@ kex_input_kexinit(int type, int plen, u_int32_t seq, void *ctxt) xfree(packet_get_string(NULL)); packet_get_char(); packet_get_int(); - packet_done(); + packet_check_eom(); kex_kexinit_finish(kex); } |