From: Günther Deschner Date: Wed, 14 May 2008 07:42:23 +0000 (+0200) Subject: dsgetdcname: In case we didn't get a mailslot reply, don't cache the nodestatus. X-Git-Tag: samba-3.3.0pre1~1248 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=12e47be02f93e2f41af5772f6a83568b3574d032;p=thirdparty%2Fsamba.git dsgetdcname: In case we didn't get a mailslot reply, don't cache the nodestatus. Guenther --- diff --git a/source/libsmb/dsgetdcname.c b/source/libsmb/dsgetdcname.c index 30d7c948223..1538502e9ad 100644 --- a/source/libsmb/dsgetdcname.c +++ b/source/libsmb/dsgetdcname.c @@ -1223,6 +1223,7 @@ static NTSTATUS process_dc_netbios(TALLOC_CTX *mem_ctx, const char *dc_name = NULL; fstring tmp_dc_name; union nbt_cldap_netlogon *r = NULL; + bool store_cache = false; uint32_t nt_version = NETLOGON_VERSION_1 | NETLOGON_VERSION_5 | NETLOGON_VERSION_5EX_WITH_IP; @@ -1261,6 +1262,7 @@ static NTSTATUS process_dc_netbios(TALLOC_CTX *mem_ctx, &nt_version, &dc_name, &r)) { + store_cache = true; namecache_store(dc_name, NBT_NAME_SERVER, 1, &ip_list); goto make_reply; } @@ -1302,7 +1304,7 @@ static NTSTATUS process_dc_netbios(TALLOC_CTX *mem_ctx, status = make_dc_info_from_cldap_reply(mem_ctx, flags, &dclist[i].ss, nt_version, r, info); - if (NT_STATUS_IS_OK(status)) { + if (NT_STATUS_IS_OK(status) && store_cache) { return store_cldap_reply(mem_ctx, flags, &dclist[i].ss, nt_version, r); }