comparison src/http/v3/ngx_http_v3_request.c @ 9046:210ad79a8853 quic

HTTP/3: fixed build without NGX_PCRE (broken by 0f5fc7a320db).
author Jiuzhou Cui <cuijiuzhou@alibaba-inc.com>
date Fri, 25 Nov 2022 15:07:23 +0800
parents 0f5fc7a320db
children 6546c2ae1c7b
comparison
equal deleted inserted replaced
9045:c6580dce98a8 9046:210ad79a8853
79 79
80 phc = ngx_http_quic_get_connection(c); 80 phc = ngx_http_quic_get_connection(c);
81 81
82 if (phc->ssl_servername) { 82 if (phc->ssl_servername) {
83 hc->ssl_servername = phc->ssl_servername; 83 hc->ssl_servername = phc->ssl_servername;
84 #if (NGX_PCRE)
84 hc->ssl_servername_regex = phc->ssl_servername_regex; 85 hc->ssl_servername_regex = phc->ssl_servername_regex;
86 #endif
85 hc->conf_ctx = phc->conf_ctx; 87 hc->conf_ctx = phc->conf_ctx;
86 88
87 ngx_set_connection_log(c, clcf->error_log); 89 ngx_set_connection_log(c, clcf->error_log);
88 } 90 }
89 91