ITS#10182 slapo-alias: check for static operational attrs too

This commit is contained in:
Howard Chu 2024-02-23 16:02:54 +00:00 committed by Quanah Gibson-Mount
parent 2de0fb10c5
commit bc6ab1131f

View file

@ -238,7 +238,9 @@ alias_response( Operation *op, SlapReply *rs )
if ( operational ) {
source = attr_find( rs->sr_operational_attrs, mapping->source );
} else {
}
if ( !source ) {
operational = 0;
source = attr_find( e_orig->e_attrs, mapping->source );
}
if ( !source )