diff -Npru 389-ds-base-1.2.11.15.orig/ldap/servers/plugins/acl/acllas.c 389-ds-base-1.2.11.15/ldap/servers/plugins/acl/acllas.c --- 389-ds-base-1.2.11.15.orig/ldap/servers/plugins/acl/acllas.c 2012-09-25 17:16:09.000000000 +0100 +++ 389-ds-base-1.2.11.15/ldap/servers/plugins/acl/acllas.c 2014-03-19 16:50:23.049164895 +0000 @@ -3624,7 +3624,7 @@ acllas__client_match_URL (struct acl_pbl /* Check the scope */ if ( ludp->lud_scope == LDAP_SCOPE_SUBTREE ) { if (!slapi_dn_issuffix(n_clientdn, ludp->lud_dn)) { - slapi_log_error( SLAPI_LOG_FATAL, plugin_name, + slapi_log_error( SLAPI_LOG_ACL, plugin_name, "acllas__client_match_URL: url [%s] scope is subtree but dn [%s] " "is not a suffix of [%s]\n", normed, ludp->lud_dn, n_clientdn ); @@ -3634,7 +3634,7 @@ acllas__client_match_URL (struct acl_pbl char *parent = slapi_dn_parent (n_clientdn); if (slapi_utf8casecmp ((ACLUCHP)parent, (ACLUCHP)ludp->lud_dn) != 0 ) { - slapi_log_error( SLAPI_LOG_FATAL, plugin_name, + slapi_log_error( SLAPI_LOG_ACL, plugin_name, "acllas__client_match_URL: url [%s] scope is onelevel but dn [%s] " "is not a direct child of [%s]\n", normed, ludp->lud_dn, parent ); @@ -3644,7 +3644,7 @@ acllas__client_match_URL (struct acl_pbl slapi_ch_free_string(&parent); } else { /* default */ if (slapi_utf8casecmp ( (ACLUCHP)n_clientdn, (ACLUCHP)ludp->lud_dn) != 0 ) { - slapi_log_error( SLAPI_LOG_FATAL, plugin_name, + slapi_log_error( SLAPI_LOG_ACL, plugin_name, "acllas__client_match_URL: url [%s] scope is base but dn [%s] " "does not match [%s]\n", normed, ludp->lud_dn, n_clientdn );