aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bsc/bsc_vty.c
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2021-04-12 12:36:49 +0200
committerneels <nhofmeyr@sysmocom.de>2021-04-14 17:40:45 +0000
commit446e3c78699ddc4a04e055bf22392f34185a0b3a (patch)
tree87f250598d9c4d2b5a1ae48dec40f182f44f5f1d /src/osmo-bsc/bsc_vty.c
parentdefb5b12008006ce1c5fcca3baf23e068a23a498 (diff)
deprecation: use osmo_bts_features_*()
For "reported feature '%s'...", use the short feature name, which better matches the message. Change-Id: Ie09506fbf3a1f0e899f9f4c8070e3139fd1d5e9d
Diffstat (limited to 'src/osmo-bsc/bsc_vty.c')
-rw-r--r--src/osmo-bsc/bsc_vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bsc/bsc_vty.c b/src/osmo-bsc/bsc_vty.c
index 57c1f0a5d..1d29f1ba2 100644
--- a/src/osmo-bsc/bsc_vty.c
+++ b/src/osmo-bsc/bsc_vty.c
@@ -349,7 +349,7 @@ static void bts_dump_vty_features(struct vty *vty, struct gsm_bts *bts)
for (i = 0; i < _NUM_BTS_FEAT; i++) {
if (osmo_bts_has_feature(&bts->features, i)) {
vty_out(vty, " %03u ", i);
- vty_out(vty, "%-40s%s", osmo_bts_feature_name(i), VTY_NEWLINE);
+ vty_out(vty, "%-40s%s", osmo_bts_features_desc(i), VTY_NEWLINE);
no_features = false;
}
}