issue 3492: geteffective rights returns incorrect rights of isMemberOf attribute
Two liner to fix attribute type lookup in geteffective rights ACI class,
| | |
| | | nonRightsAttrs.addAll(e.getOperationalAttributes().keySet()); |
| | | else { |
| | | AttributeType attrType; |
| | | if((attrType = DirectoryServer.getAttributeType(a)) == null) |
| | | attrType = DirectoryServer.getDefaultAttributeType(a); |
| | | if((attrType = |
| | | DirectoryServer.getAttributeType(a.toLowerCase())) == null) |
| | | attrType = |
| | | DirectoryServer.getDefaultAttributeType(a.toLowerCase()); |
| | | nonRightsAttrs.add(attrType); |
| | | } |
| | | } |