aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2009-02-09 23:09:55 +0000
committerHolger Freyther <zecke@selfish.org>2009-02-09 23:09:55 +0000
commit59639e81e1779cddaa0a4203f79348ceab921f79 (patch)
treec1a9ff1a40fa7fd93866f29f76c83a038952bfde
parentfb3f5190b440494c2d7d5b32cc154d6ab464c12e (diff)
* always use bts->c0 as msg->trx for OML messages
-rw-r--r--src/abis_nm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/abis_nm.c b/src/abis_nm.c
index b506f340d..313b9dcf1 100644
--- a/src/abis_nm.c
+++ b/src/abis_nm.c
@@ -163,6 +163,8 @@ static struct msgb *nm_msgb_alloc(void)
/* Send a OML NM Message from BSC to BTS */
int abis_nm_sendmsg(struct gsm_bts *bts, struct msgb *msg)
{
+ msg->trx = bts->c0;
+
return _abis_nm_sendmsg(msg);
}