From df883f35b28a4991470bd081f63a378225bdf827 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Sun, 6 Apr 2003 16:01:18 +0000 Subject: fix commit (This used to be commit ad1a2ab0d6330a0b0fbce7b30ec5f6f502133921) --- source3/sam/idmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/sam/idmap.c') diff --git a/source3/sam/idmap.c b/source3/sam/idmap.c index 0e55ca5141..00b45565bb 100644 --- a/source3/sam/idmap.c +++ b/source3/sam/idmap.c @@ -67,7 +67,7 @@ BOOL idmap_init(const char *remote_backend) { if (!local_map) { idmap_reg_tdb(&local_map); - local_map->init("idmap.tdb"); + local_map->init(); } if (!remote_map && remote_backend && *remote_backend != 0) { @@ -78,7 +78,7 @@ BOOL idmap_init(const char *remote_backend) DEBUG(0, ("load_methods: could not load remote backend '%s'\n", remote_backend)); return False; } - remote_map->init(""); + remote_map->init(); } return True; -- cgit