BSSGP_Emulation: as_unblocked: fix SIG broadcast

I am not aware that this caused breakage anywhere. But from reading the
patch, this is a regression that needs to be fixed.

Fixes: 955aa94504 ("BSSGP_Emulation: Abandon "BssgpDecoded" intermediate structure")
Change-Id: I36a9a4d61be52a4d86ac1cbf6e6976cf01cff7c6
This commit is contained in:
Oliver Smith 2019-08-30 11:48:00 +02:00
parent 7bdf87bf9f
commit a2cf8bd0d1
1 changed files with 1 additions and 1 deletions

View File

@ -593,7 +593,7 @@ altstep as_unblocked() runs on BSSGP_CT {
// TITAN DOESN'T DO THIS, *SIGH*: "BSSGP_SP.send(dec) to all component;"
for (var integer i := 0; i < sizeof(ClientTable); i := i+1) {
if (isbound(ClientTable[i].comp_ref)) {
f_send_bssgp_dec(dec, vc_conn, BSSGP_SP_SIG);
f_send_bssgp_dec(dec, ClientTable[i].comp_ref, BSSGP_SP_SIG);
}
}
}