summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--openbsd-compat/regress/snprintftest.c1
-rw-r--r--openbsd-compat/regress/strduptest.c3
3 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 47069e286..180f4403b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -90,6 +90,9 @@
90 remove last traces of bufaux.h - it was merged into buffer.h in the big 90 remove last traces of bufaux.h - it was merged into buffer.h in the big
91 includes.h commit 91 includes.h commit
92 - (djm) [auth.c loginrec.c] Missing netinet/in.h for loginrec 92 - (djm) [auth.c loginrec.c] Missing netinet/in.h for loginrec
93 - (djm) [openbsd-compat/regress/snprintftest.c]
94 [openbsd-compat/regress/strduptest.c] Add missing includes so they pass
95 compilation with "-Wall -Werror"
93 96
9420060804 9720060804
95 - (dtucker) [configure.ac] The "crippled AES" test does not work on recent 98 - (dtucker) [configure.ac] The "crippled AES" test does not work on recent
@@ -5160,4 +5163,4 @@
5160 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 5163 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
5161 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 5164 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
5162 5165
5163$Id: ChangeLog,v 1.4456 2006/08/05 02:54:24 djm Exp $ 5166$Id: ChangeLog,v 1.4457 2006/08/05 03:27:29 djm Exp $
diff --git a/openbsd-compat/regress/snprintftest.c b/openbsd-compat/regress/snprintftest.c
index e25bf223f..8879244b5 100644
--- a/openbsd-compat/regress/snprintftest.c
+++ b/openbsd-compat/regress/snprintftest.c
@@ -21,6 +21,7 @@
21#include <stdlib.h> 21#include <stdlib.h>
22#include <stdio.h> 22#include <stdio.h>
23#include <stdarg.h> 23#include <stdarg.h>
24#include <string.h>
24 25
25static int failed = 0; 26static int failed = 0;
26 27
diff --git a/openbsd-compat/regress/strduptest.c b/openbsd-compat/regress/strduptest.c
index 664a48ef4..7f6d779be 100644
--- a/openbsd-compat/regress/strduptest.c
+++ b/openbsd-compat/regress/strduptest.c
@@ -14,6 +14,9 @@
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */ 15 */
16 16
17#include <stdlib.h>
18#include <string.h>
19
17static int fail = 0; 20static int fail = 0;
18 21
19void 22void