vty typo: 'show hnb': SCTP stream, not SCCP stream

Change-Id: Iceb29af9f4ef6b4b4ed9778bdd683d30c201371d
This commit is contained in:
Neels Hofmeyr 2017-12-25 15:24:33 +01:00
parent 23f3fdc6b2
commit 3bd8a55661
1 changed files with 1 additions and 1 deletions

View File

@ -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);