summaryrefslogtreecommitdiffstats
path: root/src/responder
diff options
context:
space:
mode:
authorPavel Reichl <preichl@redhat.com>2015-01-22 07:22:42 -0500
committerJakub Hrozek <jhrozek@redhat.com>2015-01-27 10:58:30 +0100
commitb07a3b729892d2bc2ffa73d93de95e19003cc6c8 (patch)
tree2a8a61dd3552a80bdd6f6f0f1fc3531f16a8c661 /src/responder
parentab5f9b58ae740868cb09e92379ed41d30b9401ac (diff)
downloadsssd-b07a3b729892d2bc2ffa73d93de95e19003cc6c8.tar.gz
sssd-b07a3b729892d2bc2ffa73d93de95e19003cc6c8.tar.xz
sssd-b07a3b729892d2bc2ffa73d93de95e19003cc6c8.zip
add missing '\n' in debug messages
Also reformat debug strings not to exceed 80 columns long lines. Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com>
Diffstat (limited to 'src/responder')
-rw-r--r--src/responder/pac/pacsrv_cmd.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/responder/pac/pacsrv_cmd.c b/src/responder/pac/pacsrv_cmd.c
index 07d2f0cf7..83609343b 100644
--- a/src/responder/pac/pacsrv_cmd.c
+++ b/src/responder/pac/pacsrv_cmd.c
@@ -584,15 +584,16 @@ static errno_t save_pac_user(struct pac_req_ctx *pr_ctx)
&msg);
if (ret == ENOENT) {
if (pwd->pw_gid == 0 && !pr_ctx->dom->mpg) {
- DEBUG(SSSDBG_CRIT_FAILURE, "Primary group RID from the PAC " \
- "cannot be translated into a GID for " \
- "user [%s]. Typically this happens " \
- "when UIDs and GIDs are read from AD " \
- "and the primary AD group does not " \
- "have a GID assigned. Make sure the " \
- "user is created by the ID provider " \
- "before GSSAPI based authentication " \
- "is used in this case.", pwd->pw_name);
+ DEBUG(SSSDBG_CRIT_FAILURE, "Primary group RID from the PAC "
+ "cannot be translated into a GID for "
+ "user [%s]. Typically this happens "
+ "when UIDs and GIDs are read from AD "
+ "and the primary AD group does not "
+ "have a GID assigned. Make sure the "
+ "user is created by the ID provider "
+ "before GSSAPI based authentication "
+ "is used in this case.\n",
+ pwd->pw_name);
ret = EINVAL;
goto done;
}