From 8e651661a5b6a0dacbd17ba1f310acb6e4e8dd3a Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: Mon, 7 Jul 2008 19:41:25 -0400 Subject: - actually remove the map at shutdown-time --- src/map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/map.c') 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); -- cgit