Disallow anonymous modification.

This commit is contained in:
Kurt Zeilenga 2001-04-19 19:28:15 +00:00
parent 1f37996fe2
commit c2c7ccc228

View File

@ -833,6 +833,11 @@ backend_check_restrictions(
*text = "update confidentiality required";
return LDAP_CONFIDENTIALITY_REQUIRED;
}
if( op->o_ndn == NULL ) {
*text = "modifications require authentication";
return LDAP_OPERATIONS_ERROR;
}
}
}