From 0f159718a77414e93a1cd9778ea0bba71042ae0b Mon Sep 17 00:00:00 2001 From: Hakase Date: Tue, 27 Feb 2018 09:28:52 +0900 Subject: [PATCH] Latest update - 7218 --- src/http/modules/ngx_http_auth_basic_module.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/http/modules/ngx_http_auth_basic_module.c b/src/http/modules/ngx_http_auth_basic_module.c index 2f345b6..a6f9ec4 100644 --- a/src/http/modules/ngx_http_auth_basic_module.c +++ b/src/http/modules/ngx_http_auth_basic_module.c @@ -266,8 +266,8 @@ ngx_http_auth_basic_handler(ngx_http_request_t *r) } ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, - "user \"%V\" was not found in \"%V\"", - &r->headers_in.user, &user_file); + "user \"%V\" was not found in \"%s\"", + &r->headers_in.user, user_file.data); return ngx_http_auth_basic_set_realm(r, &realm); }