diff options
author | Herb Lewis <herb@samba.org> | 2007-03-09 15:34:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:18:31 -0500 |
commit | b1fc114fdca8d38fc1e46984642e3d4d411f5dd6 (patch) | |
tree | 8b89b3c89b0cdc3362bf6a16f4eeb24dc956cc80 /source3/nsswitch | |
parent | f6c9f87e0577633f466154e3dca4c9342c92b115 (diff) | |
download | samba-b1fc114fdca8d38fc1e46984642e3d4d411f5dd6.tar.gz samba-b1fc114fdca8d38fc1e46984642e3d4d411f5dd6.tar.bz2 samba-b1fc114fdca8d38fc1e46984642e3d4d411f5dd6.zip |
r21775: make messages more understandable - don't leave part dangling after newline
(This used to be commit f57e4f8adaa3b8cfc300ee6625fdbca968bb81d3)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/winbindd_user.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/nsswitch/winbindd_user.c b/source3/nsswitch/winbindd_user.c index 47a7364e3a..acb81ee871 100644 --- a/source3/nsswitch/winbindd_user.c +++ b/source3/nsswitch/winbindd_user.c @@ -262,7 +262,7 @@ static void getpwsid_sid2uid_recv(void *private_data, BOOL success, uid_t uid) talloc_get_type_abort(private_data, struct getpwsid_state); if (!success) { - DEBUG(5, ("Could not query user's %s\\%s uid\n", + DEBUG(5, ("Could not query uid for user %s\\%s\n", s->domain->name, s->username)); request_error(s->state); return; @@ -289,7 +289,7 @@ static void getpwsid_sid2gid_recv(void *private_data, BOOL success, gid_t gid) if ( s->gid == (gid_t)-1 ) { if (!success) { - DEBUG(5, ("Could not query user's %s\\%s\n gid", + DEBUG(5, ("Could not query gid for user %s\\%s\n", s->domain->name, s->username)); goto failed; } |