[SCM] Samba Shared Repository - branch master updated

Jim McDonough jmcd at samba.org
Thu Oct 29 09:15:28 MDT 2009


The branch, master has been updated
       via  f88ab1b... s3: Fix incorrect rc check of nscd_flush_cache.
      from  184afaa... s3-secrets: use autogenerated code for TRUSTED_DOM_PASS struct parsing from a tdb.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit f88ab1b1515b248dde4674caf602c04b40c46055
Author: Jim McDonough <jmcd at samba.org>
Date:   Thu Oct 29 11:11:43 2009 -0400

    s3: Fix incorrect rc check of nscd_flush_cache.
    
    At least this only resulted in an incorrect debug message.

-----------------------------------------------------------------------

Summary of changes:
 source3/lib/util_nscd.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/lib/util_nscd.c b/source3/lib/util_nscd.c
index f019bdd..4feab3b 100644
--- a/source3/lib/util_nscd.c
+++ b/source3/lib/util_nscd.c
@@ -22,7 +22,7 @@
 static void smb_nscd_flush_cache(const char *service)
 {
 #ifdef HAVE_NSCD_FLUSH_CACHE
-	if (!nscd_flush_cache(service)) {
+	if (nscd_flush_cache(service)) {
 		DEBUG(10,("failed to flush nscd cache for '%s' service: %s. "
 			  "Is nscd running?\n",
 			  service, strerror(errno)));


-- 
Samba Shared Repository


More information about the samba-cvs mailing list