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:
parent
f6f8ec8d8b
commit
99d98e31bc
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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)
|
||||
|
@ -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,
|
||||
|
@ -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 );
|
||||
}
|
||||
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user