summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2012-09-10 23:08:50 +0200
committerJakub Hrozek <jhrozek@redhat.com>2012-09-10 23:09:23 +0200
commit3f5016f66ae1351e9884157a13192f97849a5c05 (patch)
treee4377004aee0dbcb2e734ca886adea41d5850799
parent6a8999bf933f72923a271831d85a01ef88a81f39 (diff)
downloadsssd-3f5016f66ae1351e9884157a13192f97849a5c05.tar.gz
sssd-3f5016f66ae1351e9884157a13192f97849a5c05.tar.xz
sssd-3f5016f66ae1351e9884157a13192f97849a5c05.zip
KRB5: Add a missing string argument
-rw-r--r--src/providers/krb5/krb5_auth.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/providers/krb5/krb5_auth.c b/src/providers/krb5/krb5_auth.c
index 18209d717..ec488e7dd 100644
--- a/src/providers/krb5/krb5_auth.c
+++ b/src/providers/krb5/krb5_auth.c
@@ -639,7 +639,8 @@ static void krb5_find_ccache_step(struct tevent_req *req)
} else {
DEBUG(SSSDBG_MINOR_FAILURE,
("Saved ccache %s if of different type than ccache in "
- "configuration file, reusing the old ccache\n"));
+ "configuration file, reusing the old ccache\n",
+ kr->old_ccname));
kr->cc_be = get_cc_be_ops_ccache(kr->old_ccname);
if (kr->cc_be == NULL) {