r21775: make messages more understandable - don't leave part dangling after newline
authorHerb Lewis <herb@samba.org>
Fri, 9 Mar 2007 15:34:12 +0000 (15:34 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:18:31 +0000 (12:18 -0500)
(This used to be commit f57e4f8adaa3b8cfc300ee6625fdbca968bb81d3)

source3/nsswitch/winbindd_user.c

index 47a7364e3a7910310fc587f11ac3898efadfe96c..acb81ee87138903dec4ee88b502fb0518eae92af 100644 (file)
@@ -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;
                }