svn commit: samba r15526 - branches/SAMBA_3_0/source/nsswitch trunk/source/nsswitch

gd at samba.org gd at samba.org
Wed May 10 11:39:55 GMT 2006


Author: gd
Date: 2006-05-10 11:39:54 +0000 (Wed, 10 May 2006)
New Revision: 15526

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

Log:
Avoid double \n.

Guenther

Modified:
   branches/SAMBA_3_0/source/nsswitch/winbindd_dual.c
   trunk/source/nsswitch/winbindd_dual.c


Changeset:
Modified: branches/SAMBA_3_0/source/nsswitch/winbindd_dual.c
===================================================================
--- branches/SAMBA_3_0/source/nsswitch/winbindd_dual.c	2006-05-10 06:35:01 UTC (rev 15525)
+++ branches/SAMBA_3_0/source/nsswitch/winbindd_dual.c	2006-05-10 11:39:54 UTC (rev 15526)
@@ -624,7 +624,7 @@
 
 	buf = talloc_asprintf_append(buf, "\n");
 
-	DEBUG(5,("collect_onlinestatus: %s\n", buf));
+	DEBUG(5,("collect_onlinestatus: %s", buf));
 
 	return buf;
 }

Modified: trunk/source/nsswitch/winbindd_dual.c
===================================================================
--- trunk/source/nsswitch/winbindd_dual.c	2006-05-10 06:35:01 UTC (rev 15525)
+++ trunk/source/nsswitch/winbindd_dual.c	2006-05-10 11:39:54 UTC (rev 15526)
@@ -625,7 +625,7 @@
 
 	buf = talloc_asprintf_append(buf, "\n");
 
-	DEBUG(5,("collect_onlinestatus: %s\n", buf));
+	DEBUG(5,("collect_onlinestatus: %s", buf));
 
 	return buf;
 }



More information about the samba-cvs mailing list