diff options
-rw-r--r-- | source3/winbindd/winbindd_ads.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/winbindd/winbindd_ads.c b/source3/winbindd/winbindd_ads.c index 92e1188714..00b53a205c 100644 --- a/source3/winbindd/winbindd_ads.c +++ b/source3/winbindd/winbindd_ads.c @@ -563,6 +563,16 @@ static NTSTATUS query_user(struct winbindd_domain *domain, info->full_name = ads_pull_string(ads, mem_ctx, msg, "name"); } + /* + * We have to re-fetch ads from the domain, + * nss_get_info_cached might have invalidated it. + */ + ads = ads_cached_connection(domain); + if (ads == NULL) { + domain->last_status = NT_STATUS_SERVER_DISABLED; + goto done; + } + if (!ads_pull_uint32(ads, msg, "primaryGroupID", &group_rid)) { DEBUG(1,("No primary group for %s !?\n", sid_string_dbg(sid))); |