diff options
author | Ruslan Ermilov <ru@nginx.com> | 2021-09-09 15:34:00 +0300 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2021-09-09 15:34:00 +0300 |
commit | 7a45071cb6a460c999a3ad5f978f8cfd5d792cdb (patch) | |
tree | a700c6f972fd82ecf37f157ad4275ad5e2e0210c /auto/lib | |
parent | f27686cf380171c0f8d4a5fb746bee4df342445c (diff) | |
download | nginx-7a45071cb6a460c999a3ad5f978f8cfd5d792cdb.tar.gz nginx-7a45071cb6a460c999a3ad5f978f8cfd5d792cdb.zip |
Changed the OpenSSL QUIC support detection.
As was changed in 253cf267f95a.
Diffstat (limited to 'auto/lib')
-rw-r--r-- | auto/lib/openssl/conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auto/lib/openssl/conf b/auto/lib/openssl/conf index 94ccd5795..f0dd1e1e8 100644 --- a/auto/lib/openssl/conf +++ b/auto/lib/openssl/conf @@ -150,7 +150,7 @@ if [ $USE_OPENSSL_QUIC = YES ]; then ngx_feature_incs="#include <openssl/ssl.h>" ngx_feature_path= ngx_feature_libs="-lssl -lcrypto $NGX_LIBDL $NGX_LIBPTHREAD" - ngx_feature_test="SSL_CTX_set_quic_method(NULL, NULL)" + ngx_feature_test="SSL_set_quic_method(NULL, NULL)" . auto/feature if [ $ngx_found = no ]; then |