aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2017-12-25 15:24:33 +0100
committerNeels Hofmeyr <neels@hofmeyr.de>2017-12-25 15:24:33 +0100
commit3bd8a556612e5990e7997044d20ade06373a7da6 (patch)
treea18bb05cb18b74fbb34e71045c87965cb529a369
parent23f3fdc6b25d8c5fc5a8f7f23eb69d2ac3d712b3 (diff)
vty typo: 'show hnb': SCTP stream, not SCCP stream
-rw-r--r--src/hnbgw_vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hnbgw_vty.c b/src/hnbgw_vty.c
index d41e3c0..060319b 100644
--- a/src/hnbgw_vty.c
+++ b/src/hnbgw_vty.c
@@ -181,7 +181,7 @@ static void vty_dump_hnb_info(struct vty *vty, struct hnb_context *hnb)
vty_out(vty, "HNB ");
vty_out_ofd_addr(vty, hnb->conn? osmo_stream_srv_get_ofd(hnb->conn) : NULL);
vty_out(vty, " \"%s\"%s", hnb->identity_info, VTY_NEWLINE);
- vty_out(vty, " MCC %u MNC %u LAC %u RAC %u SAC %u CID %u SCCP-stream:HNBAP=%u,RUA=%u%s",
+ vty_out(vty, " MCC %u MNC %u LAC %u RAC %u SAC %u CID %u SCTP-stream:HNBAP=%u,RUA=%u%s",
hnb->id.mcc, hnb->id.mnc, hnb->id.lac, hnb->id.rac, hnb->id.sac, hnb->id.cid,
hnb->hnbap_stream, hnb->rua_stream, VTY_NEWLINE);