Compare commits

...

1 Commits

Author SHA1 Message Date
turletti
be27b70468 temporary hack proposed by Teodora Vladic to allow other sd than 0xffffff 2024-11-07 07:30:48 +01:00

View File

@@ -180,7 +180,8 @@ static void capture_sst_sd(test_cond_value_t* test_cond_value, uint8_t *sst, uin
static bool nssai_matches(nssai_t a_nssai, uint8_t b_sst, const uint32_t *b_sd)
{
if (b_sd == NULL) {
return a_nssai.sst == b_sst && a_nssai.sd == 0xffffff;
//return a_nssai.sst == b_sst && a_nssai.sd == 0xffffff;
return a_nssai.sst == b_sst; // Temporary hack from Teodora Vladic to allow other sd than 0xffffff
} else {
AssertFatal(*b_sd <= 0xffffff, "illegal SD %d\n", *b_sd);
return a_nssai.sst == b_sst && a_nssai.sd == *b_sd;