From 38fcfada8270bf022d7bedc884fda7de79478a33 Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: Mon, 30 Jun 2008 17:48:57 -0400 Subject: - be more consisten about group/set nomenclature --- src/format.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/format.c') diff --git a/src/format.c b/src/format.c index 70e8722..82dac70 100644 --- a/src/format.c +++ b/src/format.c @@ -751,7 +751,7 @@ format_referred(struct plugin_state *state, Slapi_PBlock *pb, Slapi_Entry *e, /* Retrieve the map-specific paramters. */ map_filter = NULL; map_bases = NULL; - backend_get_map_config(state, group, argv[1], &map_bases, &map_filter); + backend_get_set_config(state, group, argv[1], &map_bases, &map_filter); if (map_filter == NULL) { map_filter = "(objectClass=*)"; } @@ -772,7 +772,7 @@ format_referred(struct plugin_state *state, Slapi_PBlock *pb, Slapi_Entry *e, slapi_log_error(SLAPI_LOG_PLUGIN, state->plugin_desc->spd_id, "referred: out of memory\n"); - backend_free_map_config(map_bases, map_filter); + backend_free_set_config(map_bases, map_filter); slapi_pblock_destroy(local_pb); format_free_parsed_args(argv); return -ENOMEM; @@ -787,7 +787,7 @@ format_referred(struct plugin_state *state, Slapi_PBlock *pb, Slapi_Entry *e, slapi_log_error(SLAPI_LOG_PLUGIN, state->plugin_desc->spd_id, "referred: out of memory\n"); - backend_free_map_config(map_bases, map_filter); + backend_free_set_config(map_bases, map_filter); slapi_pblock_destroy(local_pb); format_free_parsed_args(argv); return -ENOMEM; @@ -816,7 +816,7 @@ format_referred(struct plugin_state *state, Slapi_PBlock *pb, Slapi_Entry *e, } free(tndn); - backend_free_map_config(map_bases, map_filter); + backend_free_set_config(map_bases, map_filter); slapi_pblock_destroy(local_pb); format_free_parsed_args(argv); return cbdata.ret ? cbdata.ret : cbdata.outbuf - outbuf; -- cgit