diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2001-12-20 22:50:25 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2001-12-20 22:50:25 +0000 |
commit | 875417685ffbf9ef3667e81f8ec081b7b96d87cd (patch) | |
tree | d6f42453f78135d603cfc33f5025a66d6e000245 /usr.bin/ssh/kex.h | |
parent | 918eee0e34df8e238e143e796dfd151aac893609 (diff) |
Conformance fix: we should send failing packet sequence number when
responding with a SSH_MSG_UNIMPLEMENTED message. Spotted by
yakk@yakk.dot.net; ok markus@
Diffstat (limited to 'usr.bin/ssh/kex.h')
-rw-r--r-- | usr.bin/ssh/kex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/kex.h b/usr.bin/ssh/kex.h index fe339211af7..ba650ea05f2 100644 --- a/usr.bin/ssh/kex.h +++ b/usr.bin/ssh/kex.h @@ -1,4 +1,4 @@ -/* $OpenBSD: kex.h,v 1.26 2001/06/26 17:27:23 markus Exp $ */ +/* $OpenBSD: kex.h,v 1.27 2001/12/20 22:50:24 djm Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -115,7 +115,7 @@ Kex *kex_setup(char *[PROPOSAL_MAX]); void kex_finish(Kex *); void kex_send_kexinit(Kex *); -void kex_input_kexinit(int, int, void *); +void kex_input_kexinit(int, int, u_int32_t, void *); void kex_derive_keys(Kex *, u_char *, BIGNUM *); void kexdh(Kex *); |