1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-22 22:04:08 +03:00

s3: Remove unused args from get_nss_info

This commit is contained in:
Volker Lendecke 2011-02-26 12:50:46 +01:00
parent f6f8ec8d8b
commit 99d98e31bc
6 changed files with 1 additions and 10 deletions

View File

@ -64,7 +64,6 @@ struct nss_info_methods {
NTSTATUS (*get_nss_info)( struct nss_domain_entry *e,
const struct dom_sid *sid,
TALLOC_CTX *ctx,
ADS_STRUCT *ads, LDAPMessage *msg,
const char **homedir, const char **shell,
const char **gecos, gid_t *p_gid);
NTSTATUS (*map_to_alias)(TALLOC_CTX *mem_ctx,

View File

@ -813,8 +813,6 @@ static NTSTATUS nss_rfc2307_init( struct nss_domain_entry *e )
static NTSTATUS nss_ad_get_info( struct nss_domain_entry *e,
const struct dom_sid *sid,
TALLOC_CTX *mem_ctx,
ADS_STRUCT *ads,
LDAPMessage *msg,
const char **homedir,
const char **shell,
const char **gecos,

View File

@ -285,8 +285,6 @@ static NTSTATUS _nss_adex_get_info(struct
nss_domain_entry *e,
const struct dom_sid * sid,
TALLOC_CTX * ctx,
ADS_STRUCT * ads,
LDAPMessage * msg,
const char **homedir,
const char **shell,
const char **gecos, gid_t * p_gid)

View File

@ -277,8 +277,6 @@ static NTSTATUS nss_hash_init(struct nss_domain_entry *e )
static NTSTATUS nss_hash_get_info(struct nss_domain_entry *e,
const struct dom_sid *sid,
TALLOC_CTX *ctx,
ADS_STRUCT *ads,
LDAPMessage *msg,
const char **homedir,
const char **shell,
const char **gecos,

View File

@ -326,7 +326,7 @@ NTSTATUS nss_get_info( const char *domain, const struct dom_sid *user_sid,
m = p->backend->methods;
return m->get_nss_info( p, user_sid, ctx, ads, msg,
return m->get_nss_info( p, user_sid, ctx,
homedir, shell, gecos, p_gid );
}

View File

@ -36,8 +36,6 @@ static NTSTATUS nss_template_init( struct nss_domain_entry *e )
static NTSTATUS nss_template_get_info( struct nss_domain_entry *e,
const struct dom_sid *sid,
TALLOC_CTX *ctx,
ADS_STRUCT *ads,
LDAPMessage *msg,
const char **homedir,
const char **shell,
const char **gecos,