Skip to content
Snippets Groups Projects
Commit c2c7ccc2 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Disallow anonymous modification.

parent 1f37996f
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment