mirror of
https://github.com/samba-team/samba.git
synced 2025-11-29 16:23:52 +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:
committed by
Gerald (Jerry) Carter
parent
fa548ad75e
commit
fa880e6cc1
@@ -259,7 +259,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 */
|
||||
@@ -316,7 +316,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;
|
||||
|
||||
Reference in New Issue
Block a user