summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2007-07-10 12:34:12 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:28:29 -0500
commit344f7aa3814d214b76e8de12be92bd68c52b26a9 (patch)
tree9f753bee30fa49c41700987c8ac7726287788f72 /source3
parentfa919f24f082dbcc7e5f88d69273eba4f72e8806 (diff)
downloadsamba-344f7aa3814d214b76e8de12be92bd68c52b26a9.tar.gz
samba-344f7aa3814d214b76e8de12be92bd68c52b26a9.tar.bz2
samba-344f7aa3814d214b76e8de12be92bd68c52b26a9.zip
r23814: Fix a couple of comments and debug messages.
(This used to be commit ef40ef67649c8793921619c128e2923e20aa68da)
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/util_tdb.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/lib/util_tdb.c b/source3/lib/util_tdb.c
index 3bd1a939b0..338a0fabdb 100644
--- a/source3/lib/util_tdb.c
+++ b/source3/lib/util_tdb.c
@@ -1010,22 +1010,22 @@ static int tdb_validate_child(const char *tdb_path,
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 @@ static int tdb_validate_child(const char *tdb_path,
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 @@ int tdb_validate(const char *tdb_path, tdb_validate_data_func validate_fn)
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"));