diff --git a/TODO-RELEASE b/TODO-RELEASE index d0852fc9b..1a72401a7 100644 --- a/TODO-RELEASE +++ b/TODO-RELEASE @@ -7,3 +7,4 @@ # If any interfaces have been added since the last public release: c:r:a + 1. # If any interfaces have been removed or changed since the last public release: c:r:0. #library what description / commit summary line +libosmocore >1.5.1 needs osmo_bts_features_name(), osmo_bts_features_desc() diff --git a/src/osmo-bsc/abis_nm.c b/src/osmo-bsc/abis_nm.c index 3eab14e74..ba1075a2f 100644 --- a/src/osmo-bsc/abis_nm.c +++ b/src/osmo-bsc/abis_nm.c @@ -607,7 +607,7 @@ static int parse_attr_resp_info_attr(struct gsm_bts *bts, const struct gsm_bts_t if (!Frep && Fexp) { LOGPMO(&bts->mo, DNM, LOGL_NOTICE, "Get Attributes Response: " "reported feature '%s' is not supported, while we thought it is.\n", - osmo_bts_feature_name(i)); + osmo_bts_features_name(i)); } } } 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; } }