mirror of
https://github.com/samba-team/samba.git
synced 2025-02-26 21:57:41 +03:00
s3: libsmb: Setting the LIBSMBCLIENT_NO_CCACHE environment variable doesn't turn off credential cache use.
Signed-off-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
88586570e8
commit
7ca7680c94
@ -177,8 +177,8 @@ 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);
|
||||
if (getenv("LIBSMBCLIENT_NO_CCACHE") != NULL) {
|
||||
smbc_setOptionUseCCache(context, false);
|
||||
}
|
||||
|
||||
smbc_setFunctionAuthData(context, SMBC_get_auth_data);
|
||||
|
Loading…
x
Reference in New Issue
Block a user