pespin has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-sigtran/+/42527?usp=email )
Change subject: asp_vty: Fix wrong vty write 'blocked' command ......................................................................
asp_vty: Fix wrong vty write 'blocked' command
This is not criticial since "block"/"no block" commands are yet to be fully implemented.
Change-Id: Ia42a064cfdbba025bc3ae5479e8e6edec4abe770 --- M src/ss7_asp_vty.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: osmith: Looks good to me, but someone else must approve fixeria: Looks good to me, approved Jenkins Builder: Verified
diff --git a/src/ss7_asp_vty.c b/src/ss7_asp_vty.c index 6b03275..f13cb60 100644 --- a/src/ss7_asp_vty.c +++ b/src/ss7_asp_vty.c @@ -1411,7 +1411,7 @@ vty_out(vty, " shutdown%s", VTY_NEWLINE); break; case OSMO_SS7_ASP_ADM_S_BLOCKED: - vty_out(vty, " blocked%s", VTY_NEWLINE); + vty_out(vty, " block%s", VTY_NEWLINE); break; case OSMO_SS7_ASP_ADM_S_ENABLED: /* Default, no need to print: */