bsc_nat_fsm: fix SSN of OsmoBSCNAT-CN

Related: SYS#5560
Change-Id: Ic0e64e002bccf1115cc53566bdab9d84dc680b03
This commit is contained in:
Oliver Smith 2022-02-17 10:51:51 +01:00
parent ba1f0d0691
commit b80f2c33c8
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ static void st_starting_on_enter(struct osmo_fsm_inst *fi, uint32_t prev_state)
{
struct bsc_nat *bsc_nat = (struct bsc_nat *)fi->priv;
if (ss7_inst_init(bsc_nat->cn, "OsmoBSCNAT-CN", DEFAULT_PC_CN, OSMO_SCCP_SSN_RANAP) < 0) {
if (ss7_inst_init(bsc_nat->cn, "OsmoBSCNAT-CN", DEFAULT_PC_CN, OSMO_SCCP_SSN_BSSAP) < 0) {
osmo_fsm_inst_state_chg(fi, BSC_NAT_FSM_ST_STOPPED, 0, 0);
return;
}