diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-03-22 02:51:24 +0100 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-03-22 02:51:24 +0100 |
commit | 0f345f5ee1e71e1e9f8780ec13b2da23b6a9f7f8 (patch) | |
tree | 4ec1146dc4a45986fc44722da5f3b4e40f1219af /compress.c | |
parent | - provos@cvs.openbsd.org 2002/03/18 17:25:29 (diff) | |
download | openssh-0f345f5ee1e71e1e9f8780ec13b2da23b6a9f7f8.tar.xz openssh-0f345f5ee1e71e1e9f8780ec13b2da23b6a9f7f8.zip |
- provos@cvs.openbsd.org 2002/03/18 17:31:54
[compress.c]
export compression streams for ssh-privsep
Diffstat (limited to 'compress.c')
-rw-r--r-- | compress.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compress.c b/compress.c index e2efa6846..85a361d3a 100644 --- a/compress.c +++ b/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; |