summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>2007-03-09 15:34:12 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:18:31 -0500
commitb1fc114fdca8d38fc1e46984642e3d4d411f5dd6 (patch)
tree8b89b3c89b0cdc3362bf6a16f4eeb24dc956cc80 /source3
parentf6c9f87e0577633f466154e3dca4c9342c92b115 (diff)
downloadsamba-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')
-rw-r--r--source3/nsswitch/winbindd_user.c4
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;
}