diff options
author | Martin Nagy <mnagy@redhat.com> | 2010-03-03 08:33:22 +0100 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-03-04 12:41:31 -0500 |
commit | 8f4aaae28c88c707853f8f28d8babc4efe0c1bf6 (patch) | |
tree | 478841789251a1ecefb59e3d8f5dc8fe9f35eb37 /src/responder/pam | |
parent | 70f4c2a1c476804b4fc409923b6fb7b0c2d2aaf4 (diff) | |
download | sssd-8f4aaae28c88c707853f8f28d8babc4efe0c1bf6.tar.gz sssd-8f4aaae28c88c707853f8f28d8babc4efe0c1bf6.tar.bz2 sssd-8f4aaae28c88c707853f8f28d8babc4efe0c1bf6.zip |
Add forgotten \n in DEBUG statements
Logs from confdb with missing '\n' in the DEBUG statements annoyed me so
I decided to fix them. I also made a quick grep through the code and
found other places so I fixed them too.
Diffstat (limited to 'src/responder/pam')
-rw-r--r-- | src/responder/pam/pam_LOCAL_domain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/responder/pam/pam_LOCAL_domain.c b/src/responder/pam/pam_LOCAL_domain.c index 34f0c8dd..a598e77e 100644 --- a/src/responder/pam/pam_LOCAL_domain.c +++ b/src/responder/pam/pam_LOCAL_domain.c @@ -265,7 +265,7 @@ static void do_pam_chauthtok(struct LOCAL_request *lreq) if (strlen(newauthtok) == 0) { /* TODO: should we allow null passwords via a config option ? */ - DEBUG(1, ("Empty passwords are not allowed!")); + DEBUG(1, ("Empty passwords are not allowed!\n")); ret = EINVAL; goto done; } |