Skip to content

Commit 8c643f2

Browse files
committed
debug
1 parent 049ba37 commit 8c643f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ngx_http_auth_jwt_module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ static ngx_int_t ngx_http_auth_jwt_handler(ngx_http_request_t *r)
112112

113113
ngx_table_elt_t *h;
114114
ngx_str_t authorizationHeaderName = ngx_string("Authorization");
115-
h = search_headers_in(&r, authorizationHeaderName.data, authorizationHeaderName.len);
115+
h = search_headers_in(r, authorizationHeaderName.data, authorizationHeaderName.len);
116116
if (h != NULL)
117117
{
118118
char* authvalue = ngx_str_t_to_char_ptr(r->pool, h.value);

0 commit comments

Comments
 (0)