From: Ralph Boehme Date: Sat, 18 Nov 2017 14:14:15 +0000 (+0100) Subject: winbindd: tdb_exists returns 1 if a record is found X-Git-Tag: talloc-2.1.11~469 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=88bdecae0a152d8c07859d437d02116d1f18087f;p=thirdparty%2Fsamba.git winbindd: tdb_exists returns 1 if a record is found Signed-off-by: Ralph Boehme Reviewed-by: Volker Lendecke Autobuild-User(master): Volker Lendecke Autobuild-Date(master): Sun Nov 19 15:14:13 CET 2017 on sn-devel-144 --- diff --git a/source3/winbindd/winbindd_cache.c b/source3/winbindd/winbindd_cache.c index 502232544c4..fbf4451fc33 100644 --- a/source3/winbindd/winbindd_cache.c +++ b/source3/winbindd/winbindd_cache.c @@ -1270,7 +1270,7 @@ NTSTATUS wcache_cached_creds_exist(struct winbindd_domain *domain, const struct fstr_sprintf(key_str, "CRED/%s", sid_to_fstring(tmp, sid)); ret = tdb_exists(cache->tdb, string_tdb_data(key_str)); - if (ret != 0) { + if (ret != 1) { return NT_STATUS_OBJECT_NAME_NOT_FOUND; }