diff options
author | bcook <> | 2015-02-12 03:09:22 +0000 |
---|---|---|
committer | bcook <> | 2015-02-12 03:09:22 +0000 |
commit | 5f7c1a2b2d1ad44c6535aac1d320379a2c952db8 (patch) | |
tree | 2e527f636b214930afe7214583797b7742577524 /src/usr.bin/openssl/certhash.c | |
parent | caffbd045e0fa106f782ed681d31cec4b6952670 (diff) | |
download | openbsd-5f7c1a2b2d1ad44c6535aac1d320379a2c952db8.tar.gz openbsd-5f7c1a2b2d1ad44c6535aac1d320379a2c952db8.tar.bz2 openbsd-5f7c1a2b2d1ad44c6535aac1d320379a2c952db8.zip |
swap limits.h for sys/limits.h
ok jsing@
Diffstat (limited to 'src/usr.bin/openssl/certhash.c')
-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> |