[SCM] Samba Shared Repository - branch v3-5-test updated

Jim McDonough jmcd at samba.org
Thu Oct 29 09:19:50 MDT 2009


The branch, v3-5-test has been updated
       via  62d9450... s3: Fix incorrect rc check of nscd_flush_cache.
      from  54d8b2f... s3:configure: only check for gpfs_gpl.h

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-5-test


- Log -----------------------------------------------------------------
commit 62d94502ca3f92b663dd30aeec9a78fa42f54ce6
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