summaryrefslogtreecommitdiffstats
path: root/source/sam
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2003-04-06 16:01:18 +0000
committerSimo Sorce <idra@samba.org>2003-04-06 16:01:18 +0000
commitad1a2ab0d6330a0b0fbce7b30ec5f6f502133921 (patch)
treec27fcdb6c121d278c6fcd48b242c935212543241 /source/sam
parentb010b6c2dc400a97eb2ad038cd1fdb34bbde2ef0 (diff)
downloadsamba-ad1a2ab0d6330a0b0fbce7b30ec5f6f502133921.tar.gz
samba-ad1a2ab0d6330a0b0fbce7b30ec5f6f502133921.tar.xz
samba-ad1a2ab0d6330a0b0fbce7b30ec5f6f502133921.zip
fix commit
Diffstat (limited to 'source/sam')
-rw-r--r--source/sam/idmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/sam/idmap.c b/source/sam/idmap.c
index 0e55ca51412..00b45565bb0 100644
--- a/source/sam/idmap.c
+++ b/source/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;