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
parent ce524021f6
commit c8caa9f659

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 )