[SCM] Samba Shared Repository - branch master updated

Volker Lendecke vlendec at samba.org
Tue Jan 26 03:46:31 MST 2010


The branch, master has been updated
       via  08fa573... s3: Enable use of ccache by default for libsmbclient
      from  1e2e92f... Correct fix for unused variable return from ndr_decode. Use it :-). Jeremy.

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


- Log -----------------------------------------------------------------
commit 08fa57335a2e1ac44764330c0d95aaf099aa0c15
Author: Volker Lendecke <vl at samba.org>
Date:   Tue Jan 26 10:51:32 2010 +0100

    s3: Enable use of ccache by default for libsmbclient
    
    Disable this by setting the environment variable LIBSMBCLIENT_NO_CCACHE, which
    has the advantage over an smb.conf option to be easily settable per
    application.

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

Summary of changes:
 source3/libsmb/libsmb_context.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/libsmb/libsmb_context.c b/source3/libsmb/libsmb_context.c
index 2e56911..c44d92c 100644
--- a/source3/libsmb/libsmb_context.c
+++ b/source3/libsmb/libsmb_context.c
@@ -173,6 +173,9 @@ smbc_new_context(void)
         smbc_setOptionBrowseMaxLmbCount(context, 3);    /* # LMBs to query */
         smbc_setOptionUrlEncodeReaddirEntries(context, False);
         smbc_setOptionOneSharePerServer(context, False);
+	if (getenv("LIBSMBCLIENT_NO_CCACHE") == NULL) {
+		smbc_setOptionUseCCache(context, true);
+	}
         
         smbc_setFunctionAuthData(context, SMBC_get_auth_data);
         smbc_setFunctionCheckServer(context, SMBC_check_server);


-- 
Samba Shared Repository


More information about the samba-cvs mailing list