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
commitb1e0a2287902704dfe165a7ba7d1fe23b22bf25f (patch)
treef07bd4c63266de218a647e6e2be1380d66d9641a /src/lib/libssl/ssl
parent3af2c9be3406b2ad8bbf0bd753101ef67f99b275 (diff)
downloadopenbsd-b1e0a2287902704dfe165a7ba7d1fe23b22bf25f.tar.gz
openbsd-b1e0a2287902704dfe165a7ba7d1fe23b22bf25f.tar.bz2
openbsd-b1e0a2287902704dfe165a7ba7d1fe23b22bf25f.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