summaryrefslogtreecommitdiffstats
path: root/src/map.c
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-07-07 19:41:25 -0400
committerNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-07-07 19:41:25 -0400
commit8e651661a5b6a0dacbd17ba1f310acb6e4e8dd3a (patch)
tree3abb1e489befa9ff9f02c18d936506b857fef718 /src/map.c
parent8ba6d289f8c71a359ed0315e739dcaac7fc5aa8c (diff)
downloadslapi-nis-8e651661a5b6a0dacbd17ba1f310acb6e4e8dd3a.tar.gz
slapi-nis-8e651661a5b6a0dacbd17ba1f310acb6e4e8dd3a.tar.xz
slapi-nis-8e651661a5b6a0dacbd17ba1f310acb6e4e8dd3a.zip
- actually remove the map at shutdown-time
Diffstat (limited to 'src/map.c')
-rw-r--r--src/map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.c b/src/map.c
index c52ce6f..018f820 100644
--- a/src/map.c
+++ b/src/map.c
@@ -1086,7 +1086,7 @@ map_done(struct plugin_state *state)
map_data_foreach_map(state, NULL, map_get_domain_and_map_name, &names);
while (names != NULL) {
next = names->next;
- map_data_clear_map(state, names->domain, names->map);
+ map_data_unset_map(state, names->domain, names->map);
free(names->domain);
free(names->map);
free(names);