summaryrefslogtreecommitdiffstats
path: root/source3/winbindd/idmap_passdb.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/winbindd/idmap_passdb.c')
-rw-r--r--source3/winbindd/idmap_passdb.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/source3/winbindd/idmap_passdb.c b/source3/winbindd/idmap_passdb.c
index 17afd71ab8..4dcf74416c 100644
--- a/source3/winbindd/idmap_passdb.c
+++ b/source3/winbindd/idmap_passdb.c
@@ -28,9 +28,8 @@
Initialise idmap database.
*****************************/
-static NTSTATUS idmap_pdb_init(struct idmap_domain *dom)
+static NTSTATUS idmap_pdb_init(struct idmap_domain *dom, const char *params)
{
- dom->initialized = True;
return NT_STATUS_OK;
}
@@ -42,10 +41,6 @@ static NTSTATUS idmap_pdb_unixids_to_sids(struct idmap_domain *dom, struct id_ma
{
int i;
- if (! dom->initialized) {
- return NT_STATUS_UNSUCCESSFUL;
- }
-
for (i = 0; ids[i]; i++) {
/* unmapped by default */
@@ -78,10 +73,6 @@ static NTSTATUS idmap_pdb_sids_to_unixids(struct idmap_domain *dom, struct id_ma
{
int i;
- if (! dom->initialized) {
- return NT_STATUS_UNSUCCESSFUL;
- }
-
for (i = 0; ids[i]; i++) {
enum lsa_SidType type;
union unid_t id;