aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bsc/osmo_bsc_bssap.c
diff options
context:
space:
mode:
authorStefan Sperling <ssperling@sysmocom.de>2018-03-19 13:38:15 +0100
committerStefan Sperling <ssperling@sysmocom.de>2018-03-19 13:38:15 +0100
commit9cf2babed9b75aec49d93ba7ce33198c574035e4 (patch)
tree1606f26cbdceffd459cb14451da762536f3b9a5b /src/osmo-bsc/osmo_bsc_bssap.c
parent835b02ab14b2d99bbeb5d8e7ad913b39998e3fe8 (diff)
fix an error message in bssmap_handle_paging()
This error message suggested that parsing a cell identifier list failed because the list was too short. While, in fact, this code has no insight into the reason behind the parsing failure. A generic error message is more appropriate. Change-Id: I033747e2183984159f1505e772d7c9494b759058 Related: OS#3073
Diffstat (limited to 'src/osmo-bsc/osmo_bsc_bssap.c')
-rw-r--r--src/osmo-bsc/osmo_bsc_bssap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bsc/osmo_bsc_bssap.c b/src/osmo-bsc/osmo_bsc_bssap.c
index c489300ac..e793a14fa 100644
--- a/src/osmo-bsc/osmo_bsc_bssap.c
+++ b/src/osmo-bsc/osmo_bsc_bssap.c
@@ -463,7 +463,7 @@ static int bssmap_handle_paging(struct bsc_msc_data *msc,
data_length = TLVP_LEN(&tp, GSM0808_IE_CELL_IDENTIFIER_LIST);
data = TLVP_VAL(&tp, GSM0808_IE_CELL_IDENTIFIER_LIST);
if (gsm0808_dec_cell_id_list2(&cil, data, data_length) < 0) {
- LOGP(DMSC, LOGL_ERROR, "Paging IMSI %s: Bogus Cell Identifier List length\n",
+ LOGP(DMSC, LOGL_ERROR, "Paging IMSI %s: Could not parse Cell Identifier List\n",
mi_string);
return -1;
}