summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2020-10-29 05:45:18 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2020-10-29 05:45:18 -0400
commite726a41a74de4544b7ce7106ab3b1b88d02e48cd (patch)
treec1c9b70e0ba68df8c9fad80c10d3b8c83474dc5e
parent78b13b610cf2eb2cc203079d1e2fe84b0fed7f7c (diff)
downloadlighttpd-git-lighttpd-1.4.56-rc5.tar.gz
[core] adjust wolfssl workaround for another caselighttpd-1.4.56-rc5
adjust wolfssl types.h workaround for another edge case
-rw-r--r--src/sys-crypto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys-crypto.h b/src/sys-crypto.h
index 71663681..81bc08fd 100644
--- a/src/sys-crypto.h
+++ b/src/sys-crypto.h
@@ -29,7 +29,7 @@
#define SIZEOF_LONG_LONG __SIZEOF_LONG_LONG__
#endif
#endif
-#if !defined(SIZEOF_LONG) && !defined(SIZEOF_LONG_LONG)
+#if !defined(SIZEOF_LONG) || !defined(SIZEOF_LONG_LONG)
#undef SIZEOF_LONG
#undef SIZEOF_LONG_LONG
#endif