diff options
-rw-r--r-- | source/nsswitch/idmap.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source/nsswitch/idmap.c b/source/nsswitch/idmap.c index 530e03089d0..7a74f744b46 100644 --- a/source/nsswitch/idmap.c +++ b/source/nsswitch/idmap.c @@ -322,8 +322,16 @@ NTSTATUS idmap_init(void) *p = '\0'; compat_params = p + 1; } + } else { + /* Back compatible: without idmap domains and explicit + idmap backend. Taking default idmap backend: tdb */ + + compat = 1; + compat_backend = talloc_strdup( idmap_ctx, "tdb"); + compat_params = compat_backend; } + if ( ! dom_list) { dom_list = idmap_default_domain; } |