diff options
author | 2002-03-18 17:31:54 +0000 | |
---|---|---|
committer | 2002-03-18 17:31:54 +0000 | |
commit | 5575f01b67aba686063ed478d8d1fc51b4630f14 (patch) | |
tree | d440d77f2788e1710bcf0ceffef1dc8eab1a98b2 /usr.bin/ssh/compress.c | |
parent | implementation of the interface between privileged and unprivileged process (diff) | |
download | wireguard-openbsd-5575f01b67aba686063ed478d8d1fc51b4630f14.tar.xz wireguard-openbsd-5575f01b67aba686063ed478d8d1fc51b4630f14.zip |
export compression streams for ssh-privsep
Diffstat (limited to 'usr.bin/ssh/compress.c')
-rw-r--r-- | usr.bin/ssh/compress.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/compress.c b/usr.bin/ssh/compress.c index e2efa6846f0..85a361d3a58 100644 --- a/usr.bin/ssh/compress.c +++ b/usr.bin/ssh/compress.c @@ -12,15 +12,15 @@ */ #include "includes.h" -RCSID("$OpenBSD: compress.c,v 1.18 2002/03/16 11:24:53 markus Exp $"); +RCSID("$OpenBSD: compress.c,v 1.19 2002/03/18 17:31:54 provos Exp $"); #include "log.h" #include "buffer.h" #include "zlib.h" #include "compress.h" -static z_stream incoming_stream; -static z_stream outgoing_stream; +z_stream incoming_stream; +z_stream outgoing_stream; static int compress_init_send_called = 0; static int compress_init_recv_called = 0; static int inflate_failed = 0; |