summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_ads.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-02-26 12:54:26 +0100
committerVolker Lendecke <vl@samba.org>2011-03-06 12:51:01 +0100
commitd3ba16a5000dca0a270298057ce0eaf10d84f2b8 (patch)
tree83271dbf826e052b2bff0393a69d32d0f4cf9700 /source3/winbindd/winbindd_ads.c
parentfff6fa7576d69a3498f831ee99763b4b04f00e52 (diff)
downloadsamba-d3ba16a5000dca0a270298057ce0eaf10d84f2b8.tar.gz
samba-d3ba16a5000dca0a270298057ce0eaf10d84f2b8.tar.bz2
samba-d3ba16a5000dca0a270298057ce0eaf10d84f2b8.zip
s3: Remove unused args from nss_get_info_cached
Diffstat (limited to 'source3/winbindd/winbindd_ads.c')
-rw-r--r--source3/winbindd/winbindd_ads.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/source3/winbindd/winbindd_ads.c b/source3/winbindd/winbindd_ads.c
index 838e74b83c..744c357bdc 100644
--- a/source3/winbindd/winbindd_ads.c
+++ b/source3/winbindd/winbindd_ads.c
@@ -252,8 +252,7 @@ static NTSTATUS query_user_list(struct winbindd_domain *domain,
* the domain.
*/
status = nss_get_info_cached(domain, &info->user_sid, mem_ctx,
- ads_cached_connection(domain),
- msg, &info->homedir, &info->shell,
+ &info->homedir, &info->shell,
&gecos, &primary_gid);
if (!NT_STATUS_IS_OK(status)) {
/*
@@ -504,7 +503,7 @@ static NTSTATUS query_user(struct winbindd_domain *domain,
info->acct_name = talloc_strdup(mem_ctx, user->base.account_name.string);
info->full_name = talloc_strdup(mem_ctx, user->base.full_name.string);
- nss_get_info_cached( domain, sid, mem_ctx, NULL, NULL,
+ nss_get_info_cached( domain, sid, mem_ctx,
&info->homedir, &info->shell, &info->full_name,
&gid );
info->primary_gid = gid;
@@ -530,7 +529,7 @@ static NTSTATUS query_user(struct winbindd_domain *domain,
/* Try to fill in what the nss_info backend can do */
- nss_get_info_cached( domain, sid, mem_ctx, NULL, NULL,
+ nss_get_info_cached( domain, sid, mem_ctx,
&info->homedir, &info->shell, &info->full_name,
&gid);
info->primary_gid = gid;
@@ -589,7 +588,7 @@ static NTSTATUS query_user(struct winbindd_domain *domain,
ads_msgfree(ads, msg);
msg = NULL;
- status = nss_get_info_cached( domain, sid, mem_ctx, ads, msg,
+ status = nss_get_info_cached( domain, sid, mem_ctx,
&info->homedir, &info->shell, &info->full_name,
&gid);
info->primary_gid = gid;