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

abartlet at samba.org abartlet at samba.org
Mon Aug 20 00:22:11 GMT 2007


Author: abartlet
Date: 2007-08-20 00:22:08 +0000 (Mon, 20 Aug 2007)
New Revision: 24566

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

Log:
Remove trailing newlines in ldb_debug(), these are not required.

Andrew Bartlett

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


Changeset:
Modified: branches/SAMBA_4_0/source/lib/ldb/common/ldb_modules.c
===================================================================
--- branches/SAMBA_4_0/source/lib/ldb/common/ldb_modules.c	2007-08-19 22:25:01 UTC (rev 24565)
+++ branches/SAMBA_4_0/source/lib/ldb/common/ldb_modules.c	2007-08-20 00:22:08 UTC (rev 24566)
@@ -328,7 +328,7 @@
 		ret = ldb_search(ldb, mods_dn, LDB_SCOPE_BASE, "", attrs, &res);
 		talloc_steal(mods_dn, res);
 		if (ret == LDB_SUCCESS && (res->count == 0 || res->msgs[0]->num_elements == 0)) {
-			ldb_debug(ldb, LDB_DEBUG_TRACE, "no modules required by the db\n");
+			ldb_debug(ldb, LDB_DEBUG_TRACE, "no modules required by the db");
 		} else {
 			if (ret != LDB_SUCCESS) {
 				ldb_debug(ldb, LDB_DEBUG_FATAL, "ldb error (%s) occurred searching for modules, bailing out\n", ldb_errstring(ldb));
@@ -356,7 +356,7 @@
 			return ret;
 		}
 	} else {
-		ldb_debug(ldb, LDB_DEBUG_TRACE, "No modules specified for this database\n");
+		ldb_debug(ldb, LDB_DEBUG_TRACE, "No modules specified for this database");
 	}
 
 	return ldb_init_module_chain(ldb, ldb->modules);



More information about the samba-cvs mailing list