summaryrefslogtreecommitdiffstats
path: root/src/providers
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2013-07-17 17:05:39 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-07-19 10:23:30 +0200
commita5ffebc111f22bbc495ed782780494b24d93c04e (patch)
treedbf3c65804668ea03da414a4b5a9b042c31b24ad /src/providers
parentca6d950b28218dc9ea4bc886c6bd27e303992417 (diff)
downloadsssd-a5ffebc111f22bbc495ed782780494b24d93c04e.tar.gz
sssd-a5ffebc111f22bbc495ed782780494b24d93c04e.tar.xz
sssd-a5ffebc111f22bbc495ed782780494b24d93c04e.zip
Add mising argument required by format string
Diffstat (limited to 'src/providers')
-rw-r--r--src/providers/krb5/krb5_common.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/providers/krb5/krb5_common.c b/src/providers/krb5/krb5_common.c
index 8f5eb4967..0e1c10bec 100644
--- a/src/providers/krb5/krb5_common.c
+++ b/src/providers/krb5/krb5_common.c
@@ -923,8 +923,9 @@ errno_t krb5_get_simple_upn(TALLOC_CTX *mem_ctx, struct krb5_ctx *krb5_ctx,
*/
ret = sss_parse_name(tmp_ctx, dom->names, username, &domname, &name);
if (ret != EOK) {
- DEBUG(SSSDBG_OP_FAILURE, ("Could not parse %s into name and " \
- "domain components, login might fail\n"));
+ DEBUG(SSSDBG_OP_FAILURE,
+ ("Could not parse [%s] into name and "
+ "domain components, login might fail\n", username));
name = discard_const(username);
}