From: kouril Date: Tue, 22 Jun 2004 14:36:26 +0000 (+0000) Subject: Corrected debug messages X-Git-Tag: v5.0-rc6~12 X-Git-Url: http://www.project-moonshot.org/gitweb/?a=commitdiff_plain;h=31dd5972a7995d50fd312fb023cbf9576ed87a0b;hp=60ebe8f57fa055b37235db55a56936aef565b970;p=mod_auth_kerb.cvs%2F.git Corrected debug messages --- diff --git a/src/mod_auth_kerb.c b/src/mod_auth_kerb.c index 9a6f4db..b0d542a 100644 --- a/src/mod_auth_kerb.c +++ b/src/mod_auth_kerb.c @@ -1145,6 +1145,8 @@ authenticate_user_gss(request_rec *r, kerb_auth_config *conf, NULL, NULL, &delegated_cred); + log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, + "Verification returned code %d", major_status); if (output_token.length) { char *token = NULL; size_t len; @@ -1162,8 +1164,8 @@ authenticate_user_gss(request_rec *r, kerb_auth_config *conf, token[len] = '\0'; *negotiate_ret_value = token; log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, - "Verification suceeded, GSS-API token of length %d bytes will be sent back", - output_token.length); + "GSS-API token of length %d bytes will be sent back", + major_status, output_token.length); gss_release_buffer(&minor_status2, &output_token); }