svn commit: samba r23814 - in branches: SAMBA_3_2/source/lib SAMBA_3_2_0/source/lib

obnox at samba.org obnox at samba.org
Tue Jul 10 12:34:12 GMT 2007


Author: obnox
Date: 2007-07-10 12:34:12 +0000 (Tue, 10 Jul 2007)
New Revision: 23814

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

Log:
Fix a couple of comments and debug messages.


Modified:
   branches/SAMBA_3_2/source/lib/util_tdb.c
   branches/SAMBA_3_2_0/source/lib/util_tdb.c


Changeset:
Modified: branches/SAMBA_3_2/source/lib/util_tdb.c
===================================================================
--- branches/SAMBA_3_2/source/lib/util_tdb.c	2007-07-10 12:22:44 UTC (rev 23813)
+++ branches/SAMBA_3_2/source/lib/util_tdb.c	2007-07-10 12:34:12 UTC (rev 23814)
@@ -1010,22 +1010,22 @@
 		goto out;
 	}
 
-	/* Check the cache freelist is good. */
+	/* Check if the tdb's freelist is good. */
 	if (tdb_validate_freelist(tdb, &num_entries) == -1) {
-		DEBUG(0,("tdb_validate_child: bad freelist in cache %s\n",
+		DEBUG(0,("tdb_validate_child: bad freelist in tdb %s\n",
 			tdb_path));
 		v_status.bad_freelist = True;
 		v_status.success = False;
 		goto out;
 	}
 
-	DEBUG(10,("tdb_validate_child: cache %s freelist has %d entries\n",
+	DEBUG(10,("tdb_validate_child: tdb %s freelist has %d entries\n",
 		tdb_path, num_entries));
 
-	/* Now traverse the cache to validate it. */
+	/* Now traverse the tdb to validate it. */
 	num_entries = tdb_traverse(tdb, validate_fn, (void *)&v_status);
 	if (num_entries == -1 || !(v_status.success)) {
-		DEBUG(0,("tdb_validate_child: cache %s traverse failed\n",
+		DEBUG(0,("tdb_validate_child: tdb %s traverse failed\n",
 			tdb_path));
 		if (!(v_status.success)) {
 			if (v_status.bad_entry) {
@@ -1038,7 +1038,7 @@
 		goto out;
 	}
 
-	DEBUG(10,("tdb_validate_child: cache %s is good "
+	DEBUG(10,("tdb_validate_child: tdb %s is good "
 		"with %d entries\n", tdb_path, num_entries));
 	ret = 0; /* Cache is good. */
 
@@ -1072,7 +1072,7 @@
 	if (pipe(pipe_fds) != 0) {
 		DEBUG(0, ("tdb_validate: unable to create pipe, "
 			  "error %s", strerror(errno)));
-		smb_panic("winbind_validate_cache: unable to create pipe.");
+		smb_panic("tdb_validate: unable to create pipe.");
 	}
 
 	DEBUG(10, ("tdb_validate: forking to let child do validation.\n"));

Modified: branches/SAMBA_3_2_0/source/lib/util_tdb.c
===================================================================
--- branches/SAMBA_3_2_0/source/lib/util_tdb.c	2007-07-10 12:22:44 UTC (rev 23813)
+++ branches/SAMBA_3_2_0/source/lib/util_tdb.c	2007-07-10 12:34:12 UTC (rev 23814)
@@ -1010,22 +1010,22 @@
 		goto out;
 	}
 
-	/* Check the cache freelist is good. */
+	/* Check if the tdb's freelist is good. */
 	if (tdb_validate_freelist(tdb, &num_entries) == -1) {
-		DEBUG(0,("tdb_validate_child: bad freelist in cache %s\n",
+		DEBUG(0,("tdb_validate_child: bad freelist in tdb %s\n",
 			tdb_path));
 		v_status.bad_freelist = True;
 		v_status.success = False;
 		goto out;
 	}
 
-	DEBUG(10,("tdb_validate_child: cache %s freelist has %d entries\n",
+	DEBUG(10,("tdb_validate_child: tdb %s freelist has %d entries\n",
 		tdb_path, num_entries));
 
-	/* Now traverse the cache to validate it. */
+	/* Now traverse the tdb to validate it. */
 	num_entries = tdb_traverse(tdb, validate_fn, (void *)&v_status);
 	if (num_entries == -1 || !(v_status.success)) {
-		DEBUG(0,("tdb_validate_child: cache %s traverse failed\n",
+		DEBUG(0,("tdb_validate_child: tdb %s traverse failed\n",
 			tdb_path));
 		if (!(v_status.success)) {
 			if (v_status.bad_entry) {
@@ -1038,7 +1038,7 @@
 		goto out;
 	}
 
-	DEBUG(10,("tdb_validate_child: cache %s is good "
+	DEBUG(10,("tdb_validate_child: tdb %s is good "
 		"with %d entries\n", tdb_path, num_entries));
 	ret = 0; /* Cache is good. */
 
@@ -1072,7 +1072,7 @@
 	if (pipe(pipe_fds) != 0) {
 		DEBUG(0, ("tdb_validate: unable to create pipe, "
 			  "error %s", strerror(errno)));
-		smb_panic("winbind_validate_cache: unable to create pipe.");
+		smb_panic("tdb_validate: unable to create pipe.");
 	}
 
 	DEBUG(10, ("tdb_validate: forking to let child do validation.\n"));



More information about the samba-cvs mailing list