Skip to content
Snippets Groups Projects
Commit f06f2a6a authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

fix ITS#3350 (rewrite/remap will be replaced by the rwm overlay)

parent b3496043
No related branches found
No related tags found
No related merge requests found
......@@ -205,8 +205,6 @@ ldap_back_map_attrs(
char ***mapped_attrs
);
extern void mapping_free ( void *mapping );
extern int ldap_back_map_config(
struct ldapmap *oc_map,
struct ldapmap *at_map,
......
......@@ -216,7 +216,7 @@ ldap_back_conn_free(
ch_free( lc );
}
void
static void
mapping_free( void *v_mapping )
{
struct ldapmapping *mapping = v_mapping;
......
......@@ -145,6 +145,15 @@ conn_free(
free( lc );
}
static void
mapping_free( void *v_mapping )
{
struct ldapmapping *mapping = v_mapping;
ch_free( mapping->src.bv_val );
ch_free( mapping->dst.bv_val );
ch_free( mapping );
}
static void
target_free(
struct metatarget *lt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment