diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2014-05-03 17:20:35 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2014-05-03 17:20:35 +0000 |
commit | cab3721a38d3e34943de9ed036d1ef5b9cdd8c1a (patch) | |
tree | 8ce8842b14f7be8008de63280d8b244f57bba797 /usr.bin/ssh/packet.h | |
parent | c710f7f7c61e03427ecc9d726b843007c4820082 (diff) |
unbreak compression, by re-init-ing the compression code in the
post-auth child. the new buffer code is more strict, and requires
buffer_init() while the old code was happy after a bzero();
originally from djm@
Diffstat (limited to 'usr.bin/ssh/packet.h')
-rw-r--r-- | usr.bin/ssh/packet.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/packet.h b/usr.bin/ssh/packet.h index 5beb1677c8e..f295f0d7c66 100644 --- a/usr.bin/ssh/packet.h +++ b/usr.bin/ssh/packet.h @@ -1,4 +1,4 @@ -/* $OpenBSD: packet.h,v 1.60 2014/04/28 03:09:18 djm Exp $ */ +/* $OpenBSD: packet.h,v 1.61 2014/05/03 17:20:34 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -114,6 +114,7 @@ time_t packet_get_rekey_timeout(void); void packet_backup_state(void); void packet_restore_state(void); +void packet_set_postauth(void); void *packet_get_input(void); void *packet_get_output(void); |