mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
as I renamed the PDB subsystem to PASSDB, we need to rename
the static init functions of the modules too:-) metze
This commit is contained in:
parent
ccce61287d
commit
09839de27c
@ -122,7 +122,7 @@ static NTSTATUS pdb_init_guestsam(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_me
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
|
||||
NTSTATUS pdb_guest_init(void)
|
||||
NTSTATUS passdb_guest_init(void)
|
||||
{
|
||||
NTSTATUS ret;
|
||||
struct passdb_ops ops;
|
||||
|
@ -144,7 +144,7 @@ static BOOL fetch_ldapsam_pw(char **dn, char** pw)
|
||||
return True;
|
||||
}
|
||||
|
||||
static const char *attr[] = {"uid", "pwdLastSet", "logonTime",
|
||||
static const char * const attr[] = {"uid", "pwdLastSet", "logonTime",
|
||||
"logoffTime", "kickoffTime", "cn",
|
||||
"pwdCanChange", "pwdMustChange",
|
||||
"displayName", "homeDrive",
|
||||
@ -2063,7 +2063,7 @@ static NTSTATUS pdb_init_ldapsam_nua(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
|
||||
NTSTATUS pdb_ldap_init(void)
|
||||
NTSTATUS passdb_ldap_init(void)
|
||||
{
|
||||
NTSTATUS ret;
|
||||
struct passdb_ops ops;
|
||||
|
@ -1580,7 +1580,7 @@ static NTSTATUS pdb_init_smbpasswd_nua(PDB_CONTEXT *pdb_context, PDB_METHODS **p
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
|
||||
NTSTATUS pdb_smbpasswd_init(void)
|
||||
NTSTATUS passdb_smbpasswd_init(void)
|
||||
{
|
||||
NTSTATUS ret;
|
||||
struct passdb_ops ops;
|
||||
|
@ -986,7 +986,7 @@ static NTSTATUS pdb_init_tdbsam_nua(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
|
||||
NTSTATUS pdb_tdb_init(void)
|
||||
NTSTATUS passdb_tdb_init(void)
|
||||
{
|
||||
NTSTATUS ret;
|
||||
struct passdb_ops ops;
|
||||
|
@ -109,7 +109,7 @@ static NTSTATUS pdb_init_unixsam(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_met
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
|
||||
NTSTATUS pdb_unix_init(void)
|
||||
NTSTATUS passdb_unix_init(void)
|
||||
{
|
||||
NTSTATUS ret;
|
||||
struct passdb_ops ops;
|
||||
|
Loading…
Reference in New Issue
Block a user