diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2022-01-13 15:57:15 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2022-01-13 15:57:15 +0300 |
commit | a7a3a8cc1778fee8597b34ce5265453ceda81b08 (patch) | |
tree | df76a56594e22f5ce9d2625ebc7c5124f5bf3ce6 /src | |
parent | 35fc2eb247cfb199a19dd1085c693c9cdad41cce (diff) | |
download | nginx-a7a3a8cc1778fee8597b34ce5265453ceda81b08.tar.gz nginx-a7a3a8cc1778fee8597b34ce5265453ceda81b08.zip |
HTTP/3: removed useless warning regarding OpenSSL library.
After 0e6528551f26, it became impossible to run into this path.
Diffstat (limited to 'src')
-rw-r--r-- | src/http/ngx_http.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c index 4886a88bf..082a849a2 100644 --- a/src/http/ngx_http.c +++ b/src/http/ngx_http.c @@ -1362,17 +1362,6 @@ ngx_http_add_address(ngx_conf_t *cf, ngx_http_core_srv_conf_t *cscf, #endif -#if (NGX_HTTP_V3 && !defined NGX_QUIC) - - if (lsopt->http3) { - ngx_conf_log_error(NGX_LOG_WARN, cf, 0, - "nginx was built with OpenSSL that lacks QUIC " - "support, HTTP/3 is not enabled for %V", - &lsopt->addr_text); - } - -#endif - addr = ngx_array_push(&port->addrs); if (addr == NULL) { return NGX_ERROR; |