From ff5d4a7b4ddb2281d0f3d720428caf074ba14f32 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 22 Oct 2004 16:19:31 +0000 Subject: r3137: Do not simply ignore failing idmap-module init for remotemaps. (in preparation of adding idmap_rid) Guenther (This used to be commit e7691f4862da141f530a8e8b1364b9c02e8dc732) --- source3/sam/idmap.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source3/sam') diff --git a/source3/sam/idmap.c b/source3/sam/idmap.c index 4de37f0e49..3abfb0ae9f 100644 --- a/source3/sam/idmap.c +++ b/source3/sam/idmap.c @@ -134,7 +134,10 @@ BOOL idmap_init(const char **remote_backend) if((remote_map = get_methods(rem_backend, False)) || (NT_STATUS_IS_OK(smb_probe_module("idmap", rem_backend)) && (remote_map = get_methods(rem_backend, False)))) { - remote_map->init(params); + if (!NT_STATUS_IS_OK(remote_map->init(params))) { + DEBUG(0, ("idmap_init: failed to initialize remote backend!\n")); + return False; + } } else { DEBUG(0, ("idmap_init: could not load remote backend '%s'\n", rem_backend)); SAFE_FREE(rem_backend); -- cgit