Skip to content

Commit 447273b

Browse files
committed
Fix for build errors
1 parent 4f71fc3 commit 447273b

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
@@ -159,7 +159,7 @@ static ngx_int_t ngx_http_auth_jwt_handler(ngx_http_request_t *r)
159159
goto redirect;
160160
}
161161
}
162-
else if ( auth_jwt_algorithm.len == sizeof("RS256") - 1 && ngx_strncmp(auth_jwt_algorithm.data, "RS256", sizeof("RS256") - 1) == 0) )
162+
else if ( auth_jwt_algorithm.len == sizeof("RS256") - 1 && ngx_strncmp(auth_jwt_algorithm.data, "RS256", sizeof("RS256") - 1) == 0 )
163163
{
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");

0 commit comments

Comments
 (0)