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

s3-passdb: remove a forward declaration.

Guenther
This commit is contained in:
Günther Deschner 2012-01-06 17:49:31 +01:00
parent 3583419b98
commit ab269deb5e

View File

@ -48,6 +48,12 @@ typedef struct _GROUP_MAP {
char *comment;
} GROUP_MAP;
struct acct_info {
char *acct_name; /* account name */
char *acct_desc; /* account name */
uint32_t rid; /* domain-relative RID */
};
/* The following definitions come from groupdb/mapping.c */
NTSTATUS add_initial_entry(gid_t gid, const char *sid, enum lsa_SidType sid_name_use, const char *nt_name, const char *comment);
@ -79,7 +85,6 @@ NTSTATUS pdb_default_create_alias(struct pdb_methods *methods,
const char *name, uint32_t *rid);
NTSTATUS pdb_default_delete_alias(struct pdb_methods *methods,
const struct dom_sid *sid);
struct acct_info;
NTSTATUS pdb_default_get_aliasinfo(struct pdb_methods *methods,
const struct dom_sid *sid,
struct acct_info *info);
@ -312,12 +317,6 @@ struct samu {
struct passwd *unix_pw;
};
struct acct_info {
char *acct_name; /* account name */
char *acct_desc; /* account name */
uint32_t rid; /* domain-relative RID */
};
struct samr_displayentry {
uint32_t idx;
uint32_t rid;