aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2019-11-18 20:04:24 +0700
committerlaforge <laforge@osmocom.org>2019-11-19 18:35:20 +0000
commit7f4360bc83eb9dfc94056217cfe42ce4aef0b0da (patch)
tree13fc42290097cf700de663ab5504d9a7116e294e
parentfec68adf3c0200046cc368f0bcc49021a19be0f2 (diff)
abis_nm.c: fix error message in verify_chan_comb()
-rw-r--r--src/osmo-bsc/abis_nm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bsc/abis_nm.c b/src/osmo-bsc/abis_nm.c
index 523cc388b..572d76219 100644
--- a/src/osmo-bsc/abis_nm.c
+++ b/src/osmo-bsc/abis_nm.c
@@ -1797,7 +1797,7 @@ static int verify_chan_comb(struct gsm_bts_trx_ts *ts, uint8_t chan_comb,
/* not allowed for TS0 of BCCH-TRX */
if (ts->trx == ts->trx->bts->c0 &&
ts->nr == 0) {
- *reason = "SDCCH/8 must be on TS0.";
+ *reason = "SDCCH/8 must not be on C0/TS0.";
return -EINVAL;
}