summaryrefslogtreecommitdiffstats
path: root/src/format.c
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-07-22 12:30:40 -0400
committerNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-07-22 12:30:40 -0400
commit67e88b8592b6f4e9aa8d42b64538aedc50591079 (patch)
tree0a6f8e5bdd7639e1533d86610d48b369c1204e87 /src/format.c
parenta366edbd16c095f31e0584581c8861b8381ba9b9 (diff)
- add a wrapper for the slapi_search_internal_get_entry() function
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 257a285..358e71c 100644
--- a/src/format.c
+++ b/src/format.c
@@ -152,8 +152,8 @@ format_add_entry_list_dn(struct entry_list *list,
sdn = slapi_sdn_new_dn_byval(dn);
if (sdn != NULL) {
entry = NULL;
- slapi_search_internal_get_entry(sdn, attributes, &entry,
- plugin_identity);
+ wrap_search_internal_get_entry(sdn, attributes, &entry,
+ plugin_identity);
slapi_sdn_free(&sdn);
if (entry != NULL) {
return format_add_entry_list(list, entry);
@@ -691,8 +691,8 @@ format_deref(struct plugin_state *state, Slapi_PBlock *pb, Slapi_Entry *e,
continue;
}
ref = NULL;
- slapi_search_internal_get_entry(refdn, attrs, &ref,
- state->plugin_identity);
+ wrap_search_internal_get_entry(refdn, attrs, &ref,
+ state->plugin_identity);
if (ref == NULL) {
slapi_log_error(SLAPI_LOG_PLUGIN,
state->plugin_desc->spd_id,