1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

tdb_chainunlock() no longer returns a value.

(This used to be commit 2c9704c3db4014ca43b4b13160b9f53ff5f36e3b)
This commit is contained in:
Tim Potter 2000-12-06 02:53:36 +00:00
parent 4cf7fcc505
commit 6e9eb6a316

View File

@ -36,14 +36,14 @@ int tdb_lock_bystring(TDB_CONTEXT *tdb, char *keyval)
}
/* unlock a chain by string */
int tdb_unlock_bystring(TDB_CONTEXT *tdb, char *keyval)
void tdb_unlock_bystring(TDB_CONTEXT *tdb, char *keyval)
{
TDB_DATA key;
key.dptr = keyval;
key.dsize = strlen(keyval)+1;
return tdb_chainunlock(tdb, key);
tdb_chainunlock(tdb, key);
}
/* lock a chain by string key */