gprs_ns2: SNS: allow transition missing transition GPRS_SNS_ST_UNCONFIGURED

A transistion from GPRS_SNS_ST_UNCONFIGURED -> GPRS_SNS_ST_UNCONFIGURED.

Related: OS#5036
Change-Id: I125e7e5a08ea6aff6e0308a18b5c0a6d0392ad32
This commit is contained in:
Alexander Couzens 2021-04-10 18:20:21 +02:00 committed by laforge
parent 4da98cc943
commit 0a7c5eea22
1 changed files with 2 additions and 1 deletions

View File

@ -1378,7 +1378,8 @@ static void ns2_sns_st_configured_onenter(struct osmo_fsm_inst *fi, uint32_t old
static const struct osmo_fsm_state ns2_sns_bss_states[] = {
[GPRS_SNS_ST_UNCONFIGURED] = {
.in_event_mask = 0, /* handled by all_state_action */
.out_state_mask = S(GPRS_SNS_ST_BSS_SIZE),
.out_state_mask = S(GPRS_SNS_ST_UNCONFIGURED) |
S(GPRS_SNS_ST_BSS_SIZE),
.name = "UNCONFIGURED",
.action = ns2_sns_st_bss_unconfigured,
},