diff --git a/res/res_config_ldap.c b/res/res_config_ldap.c
index 5e95853d462def6eef468ed05c77b857e16dc960..a8a8fe696ae5bab99c38b14467dc96c1244629e3 100644
--- a/res/res_config_ldap.c
+++ b/res/res_config_ldap.c
@@ -1292,12 +1292,15 @@ static int update_ldap(const char *basedn, const char *table_name, const char *a
 	mods_size = 2; /* one for the first param/value pair and one for the the terminating NULL */
 	ldap_mods = ldap_memcalloc(sizeof(LDAPMod *), mods_size);
 	ldap_mods[0] = ldap_memcalloc(1, sizeof(LDAPMod));
-
-	ldap_mods[0]->mod_op = LDAP_MOD_REPLACE;
 	ldap_mods[0]->mod_type = ldap_strdup(newparam);
 
-	ldap_mods[0]->mod_values = ast_calloc(sizeof(char *), 2);
-	ldap_mods[0]->mod_values[0] = ldap_strdup(field->value);
+	if (strlen(field->value) == 0) {
+		ldap_mods[0]->mod_op = LDAP_MOD_DELETE;
+	} else {
+		ldap_mods[0]->mod_op = LDAP_MOD_REPLACE;
+		ldap_mods[0]->mod_values = ast_calloc(sizeof(char *), 2);
+		ldap_mods[0]->mod_values[0] = ldap_strdup(field->value);
+	}
 
 	while ((field = field->next)) {
 		newparam = convert_attribute_name_to_ldap(table_config, field->name);