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

Minor adjustments to last commit

parent 90e4c087
No related branches found
No related tags found
No related merge requests found
......@@ -109,9 +109,9 @@ Attribute *attrs_dup( Attribute *a )
int
attr_merge(
Entry *e,
Entry *e,
AttributeDescription *desc,
struct berval **vals )
struct berval **vals )
{
Attribute **a;
......
......@@ -275,9 +275,9 @@ add_values(
/* check if the values we're adding already exist */
if ( a != NULL ) {
/* do allow add of additional attribute if
no equality rule exists */
if( mr == NULL ) {
if( mr == NULL || !mr->smr_match ) {
/* do not allow add of additional attribute
if no equality rule exists */
return LDAP_INAPPROPRIATE_MATCHING;
}
......@@ -339,9 +339,9 @@ delete_values(
LDAP_NO_SUCH_ATTRIBUTE : LDAP_SUCCESS );
}
/* disallow specific attributes from being deleted if
no equality rule */
if( mr == NULL || !mr->smr_match ) {
/* disallow specific attributes from being deleted if
no equality rule */
return LDAP_INAPPROPRIATE_MATCHING;
}
......
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