You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
src/server/nginx.c: In function '_oauth2_nginx_port_copy':
src/server/nginx.c:103:27: error: 'ngx_http_request_t' {aka 'struct ngx_http_request_s'} has no member named 'port_end'; did you mean 'host_end'?
103 | int len = ctx->r->port_end - ctx->r->port_start;
| ^~~~~~~~
| host_end
src/server/nginx.c:103:46: error: 'ngx_http_request_t' {aka 'struct ngx_http_request_s'} has no member named 'port_start'; did you mean 'host_start'?
103 | int len = ctx->r->port_end - ctx->r->port_start;
| ^~~~~~~~~~
| host_start
src/server/nginx.c:105:58: error: 'ngx_http_request_t' {aka 'struct ngx_http_request_s'} has no member named 'port_start'; did you mean 'host_start'?
105 | v = oauth2_strndup((const char *)ctx->r->port_start, len);
| ^~~~~~~~~~
| host_start
make: *** [Makefile:1464: src/server/liboauth2_nginx_la-nginx.lo] Error 1
The text was updated successfully, but these errors were encountered:
nginx has removed r->port_start and r->port_end.
nginx/nginx@0db94ba
The text was updated successfully, but these errors were encountered: