pespin submitted this change.
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(-)
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: */
To view, visit change 42527. To unsubscribe, or for help writing mail filters, visit settings.