svn commit: samba r13266 - in trunk/source/passdb: .

vlendec at samba.org vlendec at samba.org
Tue Jan 31 23:13:55 GMT 2006


Author: vlendec
Date: 2006-01-31 23:13:54 +0000 (Tue, 31 Jan 2006)
New Revision: 13266

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

Log:
Fix stupid bug...
Modified:
   trunk/source/passdb/pdb_tdb.c


Changeset:
Modified: trunk/source/passdb/pdb_tdb.c
===================================================================
--- trunk/source/passdb/pdb_tdb.c	2006-01-31 22:58:50 UTC (rev 13265)
+++ trunk/source/passdb/pdb_tdb.c	2006-01-31 23:13:54 UTC (rev 13266)
@@ -899,9 +899,9 @@
 
 	if (version == -1) {
 		/* No key found, must be a new db */
-		if (!tdb_store_int32(tdb, "IDMAP_VERSION",
-				     IDMAP_VERSION) != 0) {
-			DEBUG(0, ("Could not store IDMAP_VERSION"));
+		if (tdb_store_int32(tdb, "IDMAP_VERSION",
+				    IDMAP_VERSION) != 0) {
+			DEBUG(0, ("Could not store IDMAP_VERSION\n"));
 			tdb_unlock_bystring(tdb, "IDMAP_VERSION");
 			return False;
 		}



More information about the samba-cvs mailing list