diff options
author | bcook <> | 2015-02-12 03:09:22 +0000 |
---|---|---|
committer | bcook <> | 2015-02-12 03:09:22 +0000 |
commit | 6d3fbda405772b8e80abc9c799d9e7475fe6bb24 (patch) | |
tree | 2e527f636b214930afe7214583797b7742577524 /src | |
parent | bb73220d57b6d3084069776cd86b6436e68dea46 (diff) | |
download | openbsd-6d3fbda405772b8e80abc9c799d9e7475fe6bb24.tar.gz openbsd-6d3fbda405772b8e80abc9c799d9e7475fe6bb24.tar.bz2 openbsd-6d3fbda405772b8e80abc9c799d9e7475fe6bb24.zip |
swap limits.h for sys/limits.h
ok jsing@
Diffstat (limited to 'src')
-rw-r--r-- | src/usr.bin/openssl/certhash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr.bin/openssl/certhash.c b/src/usr.bin/openssl/certhash.c index 39e8324ea0..a7a42d7f59 100644 --- a/src/usr.bin/openssl/certhash.c +++ b/src/usr.bin/openssl/certhash.c | |||
@@ -16,12 +16,12 @@ | |||
16 | 16 | ||
17 | #include <sys/param.h> | 17 | #include <sys/param.h> |
18 | #include <sys/types.h> | 18 | #include <sys/types.h> |
19 | #include <sys/limits.h> | ||
20 | #include <sys/stat.h> | 19 | #include <sys/stat.h> |
21 | 20 | ||
22 | #include <errno.h> | 21 | #include <errno.h> |
23 | #include <dirent.h> | 22 | #include <dirent.h> |
24 | #include <fcntl.h> | 23 | #include <fcntl.h> |
24 | #include <limits.h> | ||
25 | #include <stdio.h> | 25 | #include <stdio.h> |
26 | #include <string.h> | 26 | #include <string.h> |
27 | #include <unistd.h> | 27 | #include <unistd.h> |