]> andersk Git - openssh.git/commitdiff
- (djm) [openbsd-compat/regress/snprintftest.c]
authordjm <djm>
Sat, 5 Aug 2006 03:27:29 +0000 (03:27 +0000)
committerdjm <djm>
Sat, 5 Aug 2006 03:27:29 +0000 (03:27 +0000)
   [openbsd-compat/regress/strduptest.c] Add missing includes so they pass
   compilation with "-Wall -Werror"

ChangeLog
openbsd-compat/regress/snprintftest.c
openbsd-compat/regress/strduptest.c

index 5fa54609a84fa7c8c69d6442eaeb4cf1ba966339..3c3b504a58b595c41ae8d99d788bdd84dc1d19ce 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -90,6 +90,9 @@
    remove last traces of bufaux.h - it was merged into buffer.h in the big
    includes.h commit
  - (djm) [auth.c loginrec.c] Missing netinet/in.h for loginrec
+ - (djm) [openbsd-compat/regress/snprintftest.c]
+   [openbsd-compat/regress/strduptest.c] Add missing includes so they pass
+   compilation with "-Wall -Werror"
 
 20060804
  - (dtucker) [configure.ac] The "crippled AES" test does not work on recent
index e25bf223f1c69c02e70e10c75d013e1aa948a6b6..8879244b5e6384ad24e7a138a2ba7b58c9c4bc60 100644 (file)
@@ -21,6 +21,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <stdarg.h>
+#include <string.h>
 
 static int failed = 0;
 
index 664a48ef4e682c6def47b06b560a100a911bdf01..7f6d779bedb3bdf0627fbe7c56847f42f972ed3d 100644 (file)
@@ -14,6 +14,9 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <stdlib.h>
+#include <string.h>
+
 static int fail = 0;
 
 void
This page took 1.82571 seconds and 5 git commands to generate.