summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_msrpc.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2011-06-08 12:56:10 +0200
committerGünther Deschner <gd@samba.org>2011-06-08 14:44:31 +0200
commitae6a779bf9f816680e724ede37324b7f5355996b (patch)
tree41a4a8662431ae77fffdcc576a0b1a1edcce5e5f /source3/winbindd/winbindd_msrpc.c
parent47ea009e86a2a4499e216d97e5b64cc9e52a27ad (diff)
downloadsamba-ae6a779bf9f816680e724ede37324b7f5355996b.tar.gz
samba-ae6a779bf9f816680e724ede37324b7f5355996b.tar.bz2
samba-ae6a779bf9f816680e724ede37324b7f5355996b.zip
s3-winbindd: make sure we obey the -n switch also for samlogon cache access.
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Jun 8 14:44:31 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/winbindd/winbindd_msrpc.c')
-rw-r--r--source3/winbindd/winbindd_msrpc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/winbindd/winbindd_msrpc.c b/source3/winbindd/winbindd_msrpc.c
index 42879f2653..b17cafe5d6 100644
--- a/source3/winbindd/winbindd_msrpc.c
+++ b/source3/winbindd/winbindd_msrpc.c
@@ -400,7 +400,7 @@ static NTSTATUS msrpc_query_user(struct winbindd_domain *domain,
{
struct rpc_pipe_client *samr_pipe;
struct policy_handle dom_pol;
- struct netr_SamInfo3 *user;
+ struct netr_SamInfo3 *user = NULL;
TALLOC_CTX *tmp_ctx;
NTSTATUS status;
@@ -418,7 +418,9 @@ static NTSTATUS msrpc_query_user(struct winbindd_domain *domain,
}
/* try netsamlogon cache first */
- user = netsamlogon_cache_get(tmp_ctx, user_sid);
+ if (winbindd_use_cache()) {
+ user = netsamlogon_cache_get(tmp_ctx, user_sid);
+ }
if (user != NULL) {
DEBUG(5,("msrpc_query_user: Cache lookup succeeded for %s\n",
sid_string_dbg(user_sid)));