From 75d3b9ce08c964b9425a1b8a43ccaaa7a3f0aa26 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 20 Dec 2011 10:25:05 +0100 Subject: s3: Fix some False/NULL hickups Autobuild-User: Volker Lendecke Autobuild-Date: Tue Dec 20 13:13:17 CET 2011 on sn-devel-104 --- source3/winbindd/winbindd_cache.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/winbindd') diff --git a/source3/winbindd/winbindd_cache.c b/source3/winbindd/winbindd_cache.c index c1f0d36fda..ffe3f38968 100644 --- a/source3/winbindd/winbindd_cache.c +++ b/source3/winbindd/winbindd_cache.c @@ -4603,7 +4603,7 @@ struct winbindd_tdc_domain * wcache_tdc_fetch_domain( TALLOC_CTX *ctx, const cha DEBUG(10,("wcache_tdc_fetch_domain: Searching for domain %s\n", name)); if ( !init_wcache() ) { - return false; + return NULL; } /* fetch the list */ @@ -4653,7 +4653,7 @@ struct winbindd_tdc_domain* sid_string_dbg(sid))); if (!init_wcache()) { - return false; + return NULL; } /* fetch the list */ -- cgit