Skip to content

Commit acc2236

Browse files
committed
Another build fix
1 parent 447273b commit acc2236

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
@@ -164,7 +164,7 @@ static ngx_int_t ngx_http_auth_jwt_handler(ngx_http_request_t *r)
164164
// in this case, 'Binary' is a misnomer, as it is the private key string itself
165165
ngx_log_debug(NGX_LOG_DEBUG, r->connection->log, 0, "got to 1");
166166
keyBinary = ngx_palloc(r->pool, jwtcf->auth_jwt_key.len);
167-
ngx_str_set(keyBinary, auth_jwt_key.data);
167+
ngx_str_set(keyBinary, jwtcf->auth_jwt_key.data);
168168
}
169169

170170
// validate the jwt

0 commit comments

Comments
 (0)