Skip to content
Snippets Groups Projects
Commit 196f9866 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#6520

parent e493e436
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@ OpenLDAP 2.4.22 Engineering
Fixed libldap GnuTLS serial length (ITS#6460)
Fixed libldap MozNSS context and PEM support (ITS#6432)
Fixed slapd acl non-entry internal searches (ITS#6481)
Fixed slapd acl attrval style initialization (ITS#6520)
Fixed slapd certificateListValidate (ITS#6466)
Fixed slapd empty URI parsing (ITS#6465)
Fixed slapd glued misplaced entries (ITS#6506)
......
......@@ -344,6 +344,7 @@ parse_acl(
goto fail;
}
a = (AccessControl *) ch_calloc( 1, sizeof(AccessControl) );
a->acl_attrval_style = ACL_STYLE_NONE;
for ( ++i; i < argc; i++ ) {
if ( strcasecmp( argv[i], "by" ) == 0 ) {
i--;
......
......@@ -1285,7 +1285,9 @@ typedef enum slap_style_e {
ACL_STYLE_SELF,
ACL_STYLE_IP,
ACL_STYLE_IPV6,
ACL_STYLE_PATH
ACL_STYLE_PATH,
ACL_STYLE_NONE
} slap_style_t;
typedef struct AuthorizationInformation {
......
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