summaryrefslogtreecommitdiff
path: root/source3/nsswitch/winbindd_cache.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-07-10 20:37:01 +0000
committerGerald Carter <jerry@samba.org>2003-07-10 20:37:01 +0000
commitc674e411c7e7a5d56ef455dab5ecbea2eaa4883e (patch)
treeb832c23c67c03de2b01633befbec188e72e1e812 /source3/nsswitch/winbindd_cache.c
parentc56bf515ce37d975bfbd9d5d0dca8780ecc79ea8 (diff)
downloadsamba-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/nsswitch/winbindd_cache.c')
-rw-r--r--source3/nsswitch/winbindd_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_cache.c b/source3/nsswitch/winbindd_cache.c
index 9163c97c95..2da2a9e641 100644
--- a/source3/nsswitch/winbindd_cache.c
+++ b/source3/nsswitch/winbindd_cache.c
@@ -258,7 +258,7 @@ static NTSTATUS fetch_cache_seqnum( struct winbindd_domain *domain, time_t now )
snprintf( key, sizeof(key), "SEQNUM/%s", domain->name );
- data = tdb_fetch_by_string( wcache->tdb, key );
+ data = tdb_fetch_bystring( wcache->tdb, key );
if ( !data.dptr || data.dsize!=8 ) {
DEBUG(10,("fetch_cache_seqnum: invalid data size key [%s]\n", key ));
return NT_STATUS_UNSUCCESSFUL;