diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | regress/unittests/sshkey/common.c | 2 | ||||
-rw-r--r-- | regress/unittests/sshkey/test_file.c | 2 | ||||
-rw-r--r-- | regress/unittests/sshkey/test_fuzz.c | 2 | ||||
-rw-r--r-- | regress/unittests/sshkey/test_sshkey.c | 2 |
5 files changed, 11 insertions, 0 deletions
@@ -1,6 +1,9 @@ | |||
1 | 20140721 | 1 | 20140721 |
2 | - (dtucker) [cipher.c openbsd-compat/openssl-compat.h] Restore the bits | 2 | - (dtucker) [cipher.c openbsd-compat/openssl-compat.h] Restore the bits |
3 | needed to build AES CTR mode against OpenSSL 0.9.8f and above. ok djm | 3 | needed to build AES CTR mode against OpenSSL 0.9.8f and above. ok djm |
4 | - (dtucker) [regress/unittests/sshkey/ | ||
5 | {common,test_file,test_fuzz,test_sshkey}.c] Wrap stdint.h includes in | ||
6 | ifdefs. | ||
4 | 7 | ||
5 | 20140719 | 8 | 20140719 |
6 | - (tim) [openbsd-compat/port-uw.c] Include misc.h for fwd_opts, used | 9 | - (tim) [openbsd-compat/port-uw.c] Include misc.h for fwd_opts, used |
diff --git a/regress/unittests/sshkey/common.c b/regress/unittests/sshkey/common.c index b73a788dd..bed9a62b3 100644 --- a/regress/unittests/sshkey/common.c +++ b/regress/unittests/sshkey/common.c | |||
@@ -12,7 +12,9 @@ | |||
12 | #include <sys/stat.h> | 12 | #include <sys/stat.h> |
13 | #include <fcntl.h> | 13 | #include <fcntl.h> |
14 | #include <stdio.h> | 14 | #include <stdio.h> |
15 | #ifdef HAVE_STDINT_H | ||
15 | #include <stdint.h> | 16 | #include <stdint.h> |
17 | #endif | ||
16 | #include <stdlib.h> | 18 | #include <stdlib.h> |
17 | #include <string.h> | 19 | #include <string.h> |
18 | #include <unistd.h> | 20 | #include <unistd.h> |
diff --git a/regress/unittests/sshkey/test_file.c b/regress/unittests/sshkey/test_file.c index 3c84f1561..de3ae38c1 100644 --- a/regress/unittests/sshkey/test_file.c +++ b/regress/unittests/sshkey/test_file.c | |||
@@ -12,7 +12,9 @@ | |||
12 | #include <sys/stat.h> | 12 | #include <sys/stat.h> |
13 | #include <fcntl.h> | 13 | #include <fcntl.h> |
14 | #include <stdio.h> | 14 | #include <stdio.h> |
15 | #ifdef HAVE_STDINT_H | ||
15 | #include <stdint.h> | 16 | #include <stdint.h> |
17 | #endif | ||
16 | #include <stdlib.h> | 18 | #include <stdlib.h> |
17 | #include <string.h> | 19 | #include <string.h> |
18 | #include <unistd.h> | 20 | #include <unistd.h> |
diff --git a/regress/unittests/sshkey/test_fuzz.c b/regress/unittests/sshkey/test_fuzz.c index be309f5d8..163e65512 100644 --- a/regress/unittests/sshkey/test_fuzz.c +++ b/regress/unittests/sshkey/test_fuzz.c | |||
@@ -12,7 +12,9 @@ | |||
12 | #include <sys/stat.h> | 12 | #include <sys/stat.h> |
13 | #include <fcntl.h> | 13 | #include <fcntl.h> |
14 | #include <stdio.h> | 14 | #include <stdio.h> |
15 | #ifdef HAVE_STDINT_H | ||
15 | #include <stdint.h> | 16 | #include <stdint.h> |
17 | #endif | ||
16 | #include <stdlib.h> | 18 | #include <stdlib.h> |
17 | #include <string.h> | 19 | #include <string.h> |
18 | #include <unistd.h> | 20 | #include <unistd.h> |
diff --git a/regress/unittests/sshkey/test_sshkey.c b/regress/unittests/sshkey/test_sshkey.c index 2d69b4d0d..03dfdba12 100644 --- a/regress/unittests/sshkey/test_sshkey.c +++ b/regress/unittests/sshkey/test_sshkey.c | |||
@@ -10,7 +10,9 @@ | |||
10 | #include <sys/types.h> | 10 | #include <sys/types.h> |
11 | #include <sys/param.h> | 11 | #include <sys/param.h> |
12 | #include <stdio.h> | 12 | #include <stdio.h> |
13 | #ifdef HAVE_STDINT_H | ||
13 | #include <stdint.h> | 14 | #include <stdint.h> |
15 | #endif | ||
14 | #include <stdlib.h> | 16 | #include <stdlib.h> |
15 | #include <string.h> | 17 | #include <string.h> |
16 | 18 | ||