diff options
author | Gerald Carter <jerry@samba.org> | 2003-07-10 20:37:01 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-07-10 20:37:01 +0000 |
commit | c674e411c7e7a5d56ef455dab5ecbea2eaa4883e (patch) | |
tree | b832c23c67c03de2b01633befbec188e72e1e812 /source3/torture | |
parent | c56bf515ce37d975bfbd9d5d0dca8780ecc79ea8 (diff) | |
download | samba-c674e411c7e7a5d56ef455dab5ecbea2eaa4883e.tar.gz samba-c674e411c7e7a5d56ef455dab5ecbea2eaa4883e.tar.bz2 samba-c674e411c7e7a5d56ef455dab5ecbea2eaa4883e.zip |
i guess i'm the only one this ever annyoed...
fix the confusion when we tdb_lock_bystring() but
we retrieve an entry using tdb_fetch_by_string.
It's now always tdb.*bystring()
(This used to be commit 66359531b89368939f0e8f584a45844b5f2f99e7)
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/mangle_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/torture/mangle_test.c b/source3/torture/mangle_test.c index e4ccfc1b83..660d4d17af 100644 --- a/source3/torture/mangle_test.c +++ b/source3/torture/mangle_test.c @@ -82,7 +82,7 @@ static BOOL test_one(struct cli_state *cli, const char *name) } /* see if the short name is already in the tdb */ - data = tdb_fetch_by_string(tdb, shortname); + data = tdb_fetch_bystring(tdb, shortname); if (data.dptr) { /* maybe its a duplicate long name? */ if (strcasecmp(name, data.dptr) != 0) { @@ -98,7 +98,7 @@ static BOOL test_one(struct cli_state *cli, const char *name) /* store it for later */ namedata.dptr = name; namedata.dsize = strlen(name)+1; - tdb_store_by_string(tdb, shortname, namedata, TDB_REPLACE); + tdb_store_bystring(tdb, shortname, namedata, TDB_REPLACE); } return True; |