1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

r23371: Fix the misleading comment I added - it really *should*

say "locks chain and returned record", not
"and returns record"
Jeremy.
This commit is contained in:
Jeremy Allison 2007-06-07 00:14:06 +00:00 committed by Gerald (Jerry) Carter
parent d0b6456763
commit bf951e3d7f

View File

@ -263,7 +263,7 @@ TDB_DATA tdb_firstkey(struct tdb_context *tdb)
tdb->travlocks.off = tdb->travlocks.hash = 0;
tdb->travlocks.lock_rw = F_RDLCK;
/* Grab first record: locks chain and returns record. */
/* Grab first record: locks chain and returned record. */
if (tdb_next_lock(tdb, &tdb->travlocks, &rec) <= 0)
return tdb_null;
/* now read the key */
@ -320,7 +320,7 @@ TDB_DATA tdb_nextkey(struct tdb_context *tdb, TDB_DATA oldkey)
}
oldhash = tdb->travlocks.hash;
/* Grab next record: locks chain and returns record,
/* Grab next record: locks chain and returned record,
unlocks old record */
if (tdb_next_lock(tdb, &tdb->travlocks, &rec) > 0) {
key.dsize = rec.key_len;