From e924573490ae5b6c2c80bd6cb6c132fb038324c8 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Tue, 5 Nov 2019 21:12:19 +0100 Subject: xua: Fix private function name The function clearly does stuff the other way as its name used to describe. Change-Id: Ib65a0f2706e2eefe2446d3c9a6bdd19cf9cb81f2 --- src/xua_as_fsm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xua_as_fsm.c b/src/xua_as_fsm.c index 97a2107..ab98da8 100644 --- a/src/xua_as_fsm.c +++ b/src/xua_as_fsm.c @@ -35,7 +35,7 @@ static struct msgb *encode_notify(const struct osmo_xlm_prim_notify *npar) return msg; } -static int asp_notify_all_as(struct osmo_ss7_as *as, struct osmo_xlm_prim_notify *npar) +static int as_notify_all_asp(struct osmo_ss7_as *as, struct osmo_xlm_prim_notify *npar) { struct msgb *msg; unsigned int i, sent = 0; @@ -264,7 +264,7 @@ static void xua_as_fsm_onenter(struct osmo_fsm_inst *fi, uint32_t old_state) /* TODO: ASP-Id of ASP triggering this state change */ - asp_notify_all_as(xafp->as, &npar); + as_notify_all_asp(xafp->as, &npar); }; static void xua_as_fsm_inactive(struct osmo_fsm_inst *fi, uint32_t event, void *data) -- cgit v1.2.3