Skip to content

Commit 7e45b2f

Browse files
committed
[mod_openssl] fix preproc syntax error (fixes #3277)
(thx dani254) x-ref: "Compile error mod_openssl.c lighttpd-1.4.77 with openssl 3.0.15" https://redmine.lighttpd.net/issues/3277
1 parent 9a57bd1 commit 7e45b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mod_openssl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3027,7 +3027,7 @@ mod_openssl_ssl_conf_curves(server *srv, plugin_config_socket *s, const buffer *
30273027
&& LIBRESSL_VERSION_NUMBER >= 0x2050100fL) \
30283028
|| OPENSSL_VERSION_NUMBER >= 0x10101000L
30293029
int rc = SSL_CTX_set1_groups_list(s->ssl_ctx, groups);
3030-
#elif (defined(BORINGSSL_API_VERSION && BORINGSSL_API_VERSION >= 3) \
3030+
#elif (defined(BORINGSSL_API_VERSION) && BORINGSSL_API_VERSION >= 3) \
30313031
|| OPENSSL_VERSION_NUMBER >= 0x10100000L
30323032
int rc = SSL_CTX_set1_curves_list(s->ssl_ctx, groups);
30333033
#endif

0 commit comments

Comments
 (0)