summaryrefslogtreecommitdiff
path: root/src/mod_authn_gssapi.c
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2016-10-04 04:52:00 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2016-10-04 05:03:15 -0400
commit28d12134700c3f72e879b4342465a863ed47fa5b (patch)
tree1d1def30b348120f03a598baeaef91d98d54acd1 /src/mod_authn_gssapi.c
parent0f38b391dca1858da13bb533b7df56edf8dc372f (diff)
downloadlighttpd-git-28d12134700c3f72e879b4342465a863ed47fa5b.tar.gz
[mod_auth] fix printing of IP in error trace
Diffstat (limited to 'src/mod_authn_gssapi.c')
-rw-r--r--src/mod_authn_gssapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_authn_gssapi.c b/src/mod_authn_gssapi.c
index d8af4a64..e1238d25 100644
--- a/src/mod_authn_gssapi.c
+++ b/src/mod_authn_gssapi.c
@@ -763,7 +763,7 @@ static handler_t mod_authn_gssapi_basic(server *srv, connection *con, void *p_d,
}
else {
/* ret == KRB5KDC_ERR_C_PRINCIPAL_UNKNOWN or no authz rules match */
- log_error_write(srv, __FILE__, __LINE__, "sbsBss", "password doesn't match for", con->uri.path, "username:", username, ", IP:", con->dst_addr_buf);
+ log_error_write(srv, __FILE__, __LINE__, "sbsBsB", "password doesn't match for", con->uri.path, "username:", username, ", IP:", con->dst_addr_buf);
return mod_authn_gssapi_send_401_unauthorized_basic(srv, con);
}
}