summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl
diff options
context:
space:
mode:
authordoug <>2015-06-27 22:42:02 +0000
committerdoug <>2015-06-27 22:42:02 +0000
commitd788c94c3402544911d6c17ebe52027adc5f4c42 (patch)
treef07bd4c63266de218a647e6e2be1380d66d9641a /src/lib/libssl/ssl
parent87bad77cfdbb2f203b527a9651aa4c96f14b8e77 (diff)
downloadopenbsd-d788c94c3402544911d6c17ebe52027adc5f4c42.tar.gz
openbsd-d788c94c3402544911d6c17ebe52027adc5f4c42.tar.bz2
openbsd-d788c94c3402544911d6c17ebe52027adc5f4c42.zip
Fix pointer to unsigned long conversion.
bcook@ notes that this check really only impacted 64-bit Windows. Also, changed the check to be unsigned for consistency. ok bcook@
Diffstat (limited to 'src/lib/libssl/ssl')
-rw-r--r--src/lib/libssl/ssl/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl/Makefile b/src/lib/libssl/ssl/Makefile
index a13fcdf512..0ff974e4de 100644
--- a/src/lib/libssl/ssl/Makefile
+++ b/src/lib/libssl/ssl/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.52 2015/06/05 21:42:37 tobiasu Exp $ 1# $OpenBSD: Makefile,v 1.53 2015/06/27 22:42:02 doug Exp $
2 2
3LIB= ssl 3LIB= ssl
4 4
@@ -6,7 +6,7 @@ SSL_SRC= ${.CURDIR}/../../libssl/src
6LSSL_SRC= ${SSL_SRC}/ssl 6LSSL_SRC= ${SSL_SRC}/ssl
7 7
8.include <bsd.own.mk> 8.include <bsd.own.mk>
9CFLAGS+= -Wall 9CFLAGS+= -Wall -Wundef
10.if ${COMPILER_VERSION:L} != "gcc3" 10.if ${COMPILER_VERSION:L} != "gcc3"
11CFLAGS+= -Werror 11CFLAGS+= -Werror
12.endif 12.endif