Skip to content

Commit

Permalink
fix mep sdn compiler warnings
Browse files Browse the repository at this point in the history
Reviewed by: nhosoi (Thanks!)
  • Loading branch information
richm committed Jan 17, 2012
1 parent a8bacba commit 184a57a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ldap/servers/plugins/mep/mep.c
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ mep_free_config_entry(struct configEntry ** entry)
if (e->sdn) {
slapi_log_error(SLAPI_LOG_CONFIG, MEP_PLUGIN_SUBSYSTEM,
"freeing config entry [%s]\n", slapi_sdn_get_dn(e->sdn));
slapi_sdn_free_string(&e->sdn);
slapi_sdn_free(&e->sdn);
}

if (e->origin_scope) {
Expand All @@ -773,7 +773,7 @@ mep_free_config_entry(struct configEntry ** entry)
}

if (e->template_sdn) {
slapi_sdn_free_(&e->template_sdn);
slapi_sdn_free(&e->template_sdn);
}

if (e->template_entry) {
Expand Down

0 comments on commit 184a57a

Please sign in to comment.