diff options
author | 2001-02-08 19:30:51 +0000 | |
---|---|---|
committer | 2001-02-08 19:30:51 +0000 | |
commit | fd1ec3d2fd5cb57baae503a9c977a1308cb64f90 (patch) | |
tree | 6b501533ef8a71a77330c5cd8d7a33590c5a9689 /usr.bin/ssh/compress.c | |
parent | drop references to ssl(8). markus ok (diff) | |
download | wireguard-openbsd-fd1ec3d2fd5cb57baae503a9c977a1308cb64f90.tar.xz wireguard-openbsd-fd1ec3d2fd5cb57baae503a9c977a1308cb64f90.zip |
sync with netbsd tree changes.
- more strict prototypes, include necessary headers
- use paths.h/pathnames.h decls
- size_t typecase to int -> u_long
Diffstat (limited to 'usr.bin/ssh/compress.c')
-rw-r--r-- | usr.bin/ssh/compress.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/compress.c b/usr.bin/ssh/compress.c index 1871bc8cc03..e8539baf006 100644 --- a/usr.bin/ssh/compress.c +++ b/usr.bin/ssh/compress.c @@ -12,11 +12,12 @@ */ #include "includes.h" -RCSID("$OpenBSD: compress.c,v 1.12 2001/01/21 19:05:48 markus Exp $"); +RCSID("$OpenBSD: compress.c,v 1.13 2001/02/08 19:30:51 itojun Exp $"); #include "log.h" #include "buffer.h" #include "zlib.h" +#include "compress.h" static z_stream incoming_stream; static z_stream outgoing_stream; |