diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | compress.c | 4 | ||||
-rw-r--r-- | monitor.c | 3 | ||||
-rw-r--r-- | monitor_wrap.c | 3 |
4 files changed, 11 insertions, 5 deletions
@@ -5,6 +5,10 @@ | |||
5 | - (dtucker) [openbsd-compat/regress/snprintftest.c] Newline on error. | 5 | - (dtucker) [openbsd-compat/regress/snprintftest.c] Newline on error. |
6 | - (dtucker) [openbsd-compat/regress/Makefile.in] Use implicit rules for the | 6 | - (dtucker) [openbsd-compat/regress/Makefile.in] Use implicit rules for the |
7 | test progs instead; they work better than what we have. | 7 | test progs instead; they work better than what we have. |
8 | - (djm) OpenBSD CVS Sync | ||
9 | - stevesk@cvs.openbsd.org 2006/08/06 01:13:32 | ||
10 | [compress.c monitor.c monitor_wrap.c] | ||
11 | "zlib.h" can be <zlib.h>; ok djm@ markus@ | ||
8 | 12 | ||
9 | 20060817 | 13 | 20060817 |
10 | - (dtucker) [openbsd-compat/fake-rfc2553.c openbsd-compat/setproctitle.c] | 14 | - (dtucker) [openbsd-compat/fake-rfc2553.c openbsd-compat/setproctitle.c] |
@@ -5226,4 +5230,4 @@ | |||
5226 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 5230 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
5227 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 5231 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
5228 | 5232 | ||
5229 | $Id: ChangeLog,v 1.4486 2006/08/18 10:56:18 dtucker Exp $ | 5233 | $Id: ChangeLog,v 1.4487 2006/08/18 14:21:46 djm Exp $ |
diff --git a/compress.c b/compress.c index f5d30b8a6..c058d2224 100644 --- a/compress.c +++ b/compress.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: compress.c,v 1.24 2006/08/03 03:34:42 deraadt Exp $ */ | 1 | /* $OpenBSD: compress.c,v 1.25 2006/08/06 01:13:32 stevesk Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -17,10 +17,10 @@ | |||
17 | #include <sys/types.h> | 17 | #include <sys/types.h> |
18 | 18 | ||
19 | #include <stdarg.h> | 19 | #include <stdarg.h> |
20 | #include <zlib.h> | ||
20 | 21 | ||
21 | #include "log.h" | 22 | #include "log.h" |
22 | #include "buffer.h" | 23 | #include "buffer.h" |
23 | #include "zlib.h" | ||
24 | #include "compress.h" | 24 | #include "compress.h" |
25 | 25 | ||
26 | z_stream incoming_stream; | 26 | z_stream incoming_stream; |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: monitor.c,v 1.86 2006/08/04 20:46:05 stevesk Exp $ */ | 1 | /* $OpenBSD: monitor.c,v 1.87 2006/08/06 01:13:32 stevesk Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright 2002 Niels Provos <provos@citi.umich.edu> | 3 | * Copyright 2002 Niels Provos <provos@citi.umich.edu> |
4 | * Copyright 2002 Markus Friedl <markus@openbsd.org> | 4 | * Copyright 2002 Markus Friedl <markus@openbsd.org> |
@@ -42,6 +42,7 @@ | |||
42 | #include <signal.h> | 42 | #include <signal.h> |
43 | #include <stdlib.h> | 43 | #include <stdlib.h> |
44 | #include <string.h> | 44 | #include <string.h> |
45 | #include <zlib.h> | ||
45 | 46 | ||
46 | #ifdef SKEY | 47 | #ifdef SKEY |
47 | #include <skey.h> | 48 | #include <skey.h> |
diff --git a/monitor_wrap.c b/monitor_wrap.c index c00a0f7cb..5d6ad25f4 100644 --- a/monitor_wrap.c +++ b/monitor_wrap.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: monitor_wrap.c,v 1.52 2006/08/05 08:28:24 dtucker Exp $ */ | 1 | /* $OpenBSD: monitor_wrap.c,v 1.53 2006/08/06 01:13:32 stevesk Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright 2002 Niels Provos <provos@citi.umich.edu> | 3 | * Copyright 2002 Niels Provos <provos@citi.umich.edu> |
4 | * Copyright 2002 Markus Friedl <markus@openbsd.org> | 4 | * Copyright 2002 Markus Friedl <markus@openbsd.org> |
@@ -36,6 +36,7 @@ | |||
36 | #include <stdio.h> | 36 | #include <stdio.h> |
37 | #include <string.h> | 37 | #include <string.h> |
38 | #include <unistd.h> | 38 | #include <unistd.h> |
39 | #include <zlib.h> | ||
39 | 40 | ||
40 | #include <openssl/bn.h> | 41 | #include <openssl/bn.h> |
41 | #include <openssl/dh.h> | 42 | #include <openssl/dh.h> |