summaryrefslogtreecommitdiffstats
path: root/src/format.c
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-06-30 17:48:57 -0400
committerNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-06-30 17:48:57 -0400
commit38fcfada8270bf022d7bedc884fda7de79478a33 (patch)
treeb4c0240d1f3b19e8180ff1788bca2c7c25e03d08 /src/format.c
parentd9b4ec41885590e7a2d66c6d33229eb7a4eb2091 (diff)
- be more consisten about group/set nomenclature
Diffstat (limited to 'src/format.c')
-rw-r--r--src/format.c8
1 files changed, 4 insertions, 4 deletions
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;