pespin has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-sigtran/+/42118?usp=email )
(
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: cosmetic: xua_as_fsm: Fix mixed brace/no-brace blocks in if/else ......................................................................
cosmetic: xua_as_fsm: Fix mixed brace/no-brace blocks in if/else
Change-Id: Ibfd818d354c09409b04b392853f544a220de3a72 --- M src/xua_as_fsm.c 1 file changed, 2 insertions(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified daniel: Looks good to me, but someone else must approve laforge: Looks good to me, approved
diff --git a/src/xua_as_fsm.c b/src/xua_as_fsm.c index 422a2b4..6828989 100644 --- a/src/xua_as_fsm.c +++ b/src/xua_as_fsm.c @@ -135,8 +135,9 @@ if (asp->remote_asp_id_present) { npar->presence |= NOTIFY_PAR_P_ASP_ID; npar->asp_id = asp->remote_asp_id; - } else + } else { npar->presence &= ~NOTIFY_PAR_P_ASP_ID; + }
fill_notify_route_ctx(asp, npar);