diff options
author | doug <> | 2015-06-27 22:42:02 +0000 |
---|---|---|
committer | doug <> | 2015-06-27 22:42:02 +0000 |
commit | d788c94c3402544911d6c17ebe52027adc5f4c42 (patch) | |
tree | f07bd4c63266de218a647e6e2be1380d66d9641a /src/lib/libssl/ssl | |
parent | 87bad77cfdbb2f203b527a9651aa4c96f14b8e77 (diff) | |
download | openbsd-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/Makefile | 4 |
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 | ||
3 | LIB= ssl | 3 | LIB= ssl |
4 | 4 | ||
@@ -6,7 +6,7 @@ SSL_SRC= ${.CURDIR}/../../libssl/src | |||
6 | LSSL_SRC= ${SSL_SRC}/ssl | 6 | LSSL_SRC= ${SSL_SRC}/ssl |
7 | 7 | ||
8 | .include <bsd.own.mk> | 8 | .include <bsd.own.mk> |
9 | CFLAGS+= -Wall | 9 | CFLAGS+= -Wall -Wundef |
10 | .if ${COMPILER_VERSION:L} != "gcc3" | 10 | .if ${COMPILER_VERSION:L} != "gcc3" |
11 | CFLAGS+= -Werror | 11 | CFLAGS+= -Werror |
12 | .endif | 12 | .endif |