From a556c491142c834bd1b961de1cc1f0ca3c859ecf Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Fri, 18 Jun 2021 18:40:53 +0200 Subject: [PATCH] osmo-bts-trx: fix typo: s/bisc/bsic/ in 'show transceiver' Change-Id: I39c6138e950ca7d3cda9c52d4e1cdaa218624641 --- src/osmo-bts-trx/trx_vty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osmo-bts-trx/trx_vty.c b/src/osmo-bts-trx/trx_vty.c index d9d17d03e..9af550e01 100644 --- a/src/osmo-bts-trx/trx_vty.c +++ b/src/osmo-bts-trx/trx_vty.c @@ -86,7 +86,7 @@ DEFUN(show_transceiver, show_transceiver_cmd, "show transceiver", vty_out(vty, " bsic : %d%s", l1h->config.bsic, VTY_NEWLINE); else - vty_out(vty, " bisc : undefined%s", VTY_NEWLINE); + vty_out(vty, " bsic : undefined%s", VTY_NEWLINE); } return CMD_SUCCESS;