pespin has uploaded this change for review.

View 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(-)

git pull ssh://gerrit.osmocom.org:29418/libosmo-sigtran refs/changes/27/42527/1
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.

Gerrit-MessageType: newchange
Gerrit-Project: libosmo-sigtran
Gerrit-Branch: master
Gerrit-Change-Id: Ia42a064cfdbba025bc3ae5479e8e6edec4abe770
Gerrit-Change-Number: 42527
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin@sysmocom.de>