svn commit: samba r8600 - in branches/SAMBA_4_0/source/lib/ldb/common: .

tridge at samba.org tridge at samba.org
Tue Jul 19 11:53:25 GMT 2005


Author: tridge
Date: 2005-07-19 11:53:25 +0000 (Tue, 19 Jul 2005)
New Revision: 8600

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

Log:
fixed null termination on some error messages in ldb





Modified:
   branches/SAMBA_4_0/source/lib/ldb/common/ldb.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/ldb/common/ldb.c
===================================================================
--- branches/SAMBA_4_0/source/lib/ldb/common/ldb.c	2005-07-19 11:52:50 UTC (rev 8599)
+++ branches/SAMBA_4_0/source/lib/ldb/common/ldb.c	2005-07-19 11:53:25 UTC (rev 8600)
@@ -88,17 +88,17 @@
 	}
 #endif
 	else {
-		ldb_debug(ldb, LDB_DEBUG_FATAL, "Unable to find backend for '%s'", url);
+		ldb_debug(ldb, LDB_DEBUG_FATAL, "Unable to find backend for '%s'\n", url);
 		return -1;
 	}
 
 	if (ret != 0) {
-		ldb_debug(ldb, LDB_DEBUG_ERROR, "Failed to connect to '%s'", url);
+		ldb_debug(ldb, LDB_DEBUG_ERROR, "Failed to connect to '%s'\n", url);
 		return ret;
 	}
 
 	if (ldb_load_modules(ldb, options) != 0) {
-		ldb_debug(ldb, LDB_DEBUG_FATAL, "Unable to load modules for '%s'", url);
+		ldb_debug(ldb, LDB_DEBUG_FATAL, "Unable to load modules for '%s'\n", url);
 		return -1;
 	}
 



More information about the samba-cvs mailing list