laforge has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-sccp/+/32328 )
Change subject: cosmetic: Fix log message in routing table add error case ......................................................................
cosmetic: Fix log message in routing table add error case
* crate -> create (typo) * linkset -> AS (we're adding a route for an AS here, not a linkset)
Change-Id: I901aa68f64de3bee1766c356a1403b6ca57d5237 --- M src/osmo_ss7_vty.c 1 file changed, 13 insertions(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve laforge: Looks good to me, approved
diff --git a/src/osmo_ss7_vty.c b/src/osmo_ss7_vty.c index 7dffe02..0d15c52 100644 --- a/src/osmo_ss7_vty.c +++ b/src/osmo_ss7_vty.c @@ -1085,7 +1085,7 @@ /* automatically add new route (see also comment above) */ if (cs7_role == CS7_ROLE_ASP) { if (!osmo_ss7_route_create(as->inst->rtable_system, rkey->pc, 0xffffff, as->cfg.name)) { - vty_out(vty, "Cannot crate route (pc=%s, linkset=%s) to linkset %s", dpc, as->cfg.name, VTY_NEWLINE); + vty_out(vty, "Cannot create route (pc=%s, linkset=%s) to AS %s", dpc, as->cfg.name, VTY_NEWLINE); return CMD_WARNING; } }