svn commit: samba r21775 - in branches: SAMBA_3_0/source/nsswitch SAMBA_3_0_25/source/nsswitch

herb at samba.org herb at samba.org
Fri Mar 9 15:34:13 GMT 2007


Author: herb
Date: 2007-03-09 15:34:12 +0000 (Fri, 09 Mar 2007)
New Revision: 21775

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=21775

Log:
make messages more understandable - don't leave part dangling after newline

Modified:
   branches/SAMBA_3_0/source/nsswitch/winbindd_user.c
   branches/SAMBA_3_0_25/source/nsswitch/winbindd_user.c


Changeset:
Modified: branches/SAMBA_3_0/source/nsswitch/winbindd_user.c
===================================================================
--- branches/SAMBA_3_0/source/nsswitch/winbindd_user.c	2007-03-09 11:34:24 UTC (rev 21774)
+++ branches/SAMBA_3_0/source/nsswitch/winbindd_user.c	2007-03-09 15:34:12 UTC (rev 21775)
@@ -262,7 +262,7 @@
 		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 @@
 	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;
 		}

Modified: branches/SAMBA_3_0_25/source/nsswitch/winbindd_user.c
===================================================================
--- branches/SAMBA_3_0_25/source/nsswitch/winbindd_user.c	2007-03-09 11:34:24 UTC (rev 21774)
+++ branches/SAMBA_3_0_25/source/nsswitch/winbindd_user.c	2007-03-09 15:34:12 UTC (rev 21775)
@@ -262,7 +262,7 @@
 		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 @@
 	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;
 		}



More information about the samba-cvs mailing list