summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--compress.c6
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index e6cbd5df0..8ee5bb9aa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -56,6 +56,9 @@
56 - provos@cvs.openbsd.org 2002/03/18 17:25:29 56 - provos@cvs.openbsd.org 2002/03/18 17:25:29
57 [bufaux.c bufaux.h] 57 [bufaux.c bufaux.h]
58 buffer_skip_string and extra sanity checking; needed by ssh-privsep 58 buffer_skip_string and extra sanity checking; needed by ssh-privsep
59 - provos@cvs.openbsd.org 2002/03/18 17:31:54
60 [compress.c]
61 export compression streams for ssh-privsep
59 62
6020020317 6320020317
61 - (tim) [configure.ac] Assume path given with --with-pid-dir=PATH is wanted, 64 - (tim) [configure.ac] Assume path given with --with-pid-dir=PATH is wanted,
@@ -7902,4 +7905,4 @@
7902 - Wrote replacements for strlcpy and mkdtemp 7905 - Wrote replacements for strlcpy and mkdtemp
7903 - Released 1.0pre1 7906 - Released 1.0pre1
7904 7907
7905$Id: ChangeLog,v 1.1941 2002/03/22 01:47:52 mouring Exp $ 7908$Id: ChangeLog,v 1.1942 2002/03/22 01:51:24 mouring Exp $
diff --git a/compress.c b/compress.c
index e2efa6846..85a361d3a 100644
--- a/compress.c
+++ b/compress.c
@@ -12,15 +12,15 @@
12 */ 12 */
13 13
14#include "includes.h" 14#include "includes.h"
15RCSID("$OpenBSD: compress.c,v 1.18 2002/03/16 11:24:53 markus Exp $"); 15RCSID("$OpenBSD: compress.c,v 1.19 2002/03/18 17:31:54 provos Exp $");
16 16
17#include "log.h" 17#include "log.h"
18#include "buffer.h" 18#include "buffer.h"
19#include "zlib.h" 19#include "zlib.h"
20#include "compress.h" 20#include "compress.h"
21 21
22static z_stream incoming_stream; 22z_stream incoming_stream;
23static z_stream outgoing_stream; 23z_stream outgoing_stream;
24static int compress_init_send_called = 0; 24static int compress_init_send_called = 0;
25static int compress_init_recv_called = 0; 25static int compress_init_recv_called = 0;
26static int inflate_failed = 0; 26static int inflate_failed = 0;