diff options
author | Vadim Yanitskiy <vyanitskiy@sysmocom.de> | 2020-09-11 20:18:20 +0700 |
---|---|---|
committer | Vadim Yanitskiy <vyanitskiy@sysmocom.de> | 2020-09-11 20:27:20 +0700 |
commit | 68f1025273556ee29edfce2397c713f4cdf91550 (patch) | |
tree | 521e248650b6b73b9f46732ed5b051735165cc7a | |
parent | fcc5ffb96dc0346ea89d25a3c6d5bd562e351e4f (diff) |
vty: clarify NM state owner printed by 'show trx N' command
Change-Id: Ib17d1e98cfa1f293cf76cd9614722b6dec538960
-rw-r--r-- | src/osmo-bsc/bsc_vty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bsc/bsc_vty.c b/src/osmo-bsc/bsc_vty.c index 352450665..e0e6e3e15 100644 --- a/src/osmo-bsc/bsc_vty.c +++ b/src/osmo-bsc/bsc_vty.c @@ -1198,7 +1198,7 @@ static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx, bool print_rs "resulting BS power: %d dBm%s", trx->nominal_power, trx->max_power_red, trx->nominal_power - trx->max_power_red, VTY_NEWLINE); - vty_out(vty, " NM State: "); + vty_out(vty, " Radio Carrier NM State: "); net_dump_nmstate(vty, &trx->mo.nm_state); if (print_rsl) vty_out(vty, " RSL State: %s%s", trx->rsl_link? "connected" : "disconnected", VTY_NEWLINE); |