summaryrefslogtreecommitdiff
path: root/src/mod_authn_gssapi.c
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2021-06-16 18:25:34 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2021-08-27 02:16:54 -0400
commitf1e8a82f1a4370d71e2d12133545f03ec0ad104e (patch)
treefd1b002909ac2a1ad8e508c3c3d88f1d2fba4c82 /src/mod_authn_gssapi.c
parente6f286ef5f4368b8ef360c0941a928ef26ea3713 (diff)
downloadlighttpd-git-f1e8a82f1a4370d71e2d12133545f03ec0ad104e.tar.gz
[multiple] inline struct in con->dst_addr_buf
(mod_extforward recently changed to use buffer_move() to save addr instead of swapping pointers)
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 b681eb66..93c506e6 100644
--- a/src/mod_authn_gssapi.c
+++ b/src/mod_authn_gssapi.c
@@ -785,7 +785,7 @@ static handler_t mod_authn_gssapi_basic(request_st * const r, void *p_d, const h
/* ret == KRB5KDC_ERR_C_PRINCIPAL_UNKNOWN or no authz rules match */
log_error(r->conf.errh, __FILE__, __LINE__,
"password doesn't match for %s username: %s IP: %s",
- r->uri.path.ptr, username->ptr, r->con->dst_addr_buf->ptr);
+ r->uri.path.ptr, username->ptr, r->con->dst_addr_buf.ptr);
return mod_authn_gssapi_send_401_unauthorized_basic(r);
}
}