aboutsummaryrefslogtreecommitdiffstats
path: root/src/abis_nm.c
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2009-02-14 23:16:59 +0000
committerHolger Freyther <zecke@selfish.org>2009-02-14 23:16:59 +0000
commit6b2d262888b2818e074c2f3a1234c5436e158775 (patch)
tree3d63eff88abacb8c23d06c503b8debbffcf214aa /src/abis_nm.c
parent7aaf112ba7370d0eea1419c00abbebe911a9c87c (diff)
[nm] Fix the ObjectClass for Set Channel Attribute
In r308 the enum for the object class was fixed and we started to send the wrong (0x4) instead of the right (0x3) object class. Fix that.
Diffstat (limited to 'src/abis_nm.c')
-rw-r--r--src/abis_nm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/abis_nm.c b/src/abis_nm.c
index 749263651..4f5841a9c 100644
--- a/src/abis_nm.c
+++ b/src/abis_nm.c
@@ -984,7 +984,7 @@ int abis_nm_set_channel_attr(struct gsm_bts_trx_ts *ts, u_int8_t chan_comb)
oh = (struct abis_om_hdr *) msgb_put(msg, ABIS_OM_FOM_HDR_SIZE);
fill_om_fom_hdr(oh, len, NM_MT_SET_CHAN_ATTR,
- NM_OC_BASEB_TRANSC, bts->bts_nr,
+ NM_OC_CHANNEL, bts->bts_nr,
ts->trx->nr, ts->nr);
/* FIXME: don't send ARFCN list, hopping sequence, mAIO, ...*/
msgb_tlv16_put(msg, NM_ATT_ARFCN_LIST, 1, &arfcn);