aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2016-05-03 02:13:13 -0500
committerBrent Cook <bcook@openbsd.org>2016-05-03 02:13:13 -0500
commitb8b8628640f5d8b77f4eca911d352fcf9fff2791 (patch)
treef505ace521ac1c9d5a4e16e73a28a2aa9311ef70
parent6cb804b34298d40a331da9f28c35b5b743434af0 (diff)
downloadportable-b8b8628640f5d8b77f4eca911d352fcf9fff2791.tar.gz
portable-b8b8628640f5d8b77f4eca911d352fcf9fff2791.tar.bz2
portable-b8b8628640f5d8b77f4eca911d352fcf9fff2791.zip
prefer limits.h over sys/limits.h
-rw-r--r--patches/encode.c.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/patches/encode.c.patch b/patches/encode.c.patch
new file mode 100644
index 0000000..289c746
--- /dev/null
+++ b/patches/encode.c.patch
@@ -0,0 +1,11 @@
1--- crypto/evp/encode.c.orig Tue May 3 02:10:07 2016
2+++ crypto/evp/encode.c Tue May 3 02:10:15 2016
3@@ -56,7 +56,7 @@
4 * [including the GNU Public Licence.]
5 */
6
7-#include <sys/limits.h>
8+#include <limits.h>
9 #include <stdio.h>
10 #include <string.h>
11