summaryrefslogtreecommitdiffstats
path: root/src/m3ua_core.erl
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-10-19 13:40:39 +0200
committerHarald Welte <laforge@gnumonks.org>2011-10-19 13:40:39 +0200
commit7dadde8c70131b14b14445246e2f68c7331e26e8 (patch)
treef7a182f969dfbca091733c0c8f305be662e41d3a /src/m3ua_core.erl
parent805fac48ee31434180aee476261cdcddb145ad92 (diff)
Make sure an incoming M3UA message is actually sent to registered service Pid
Diffstat (limited to 'src/m3ua_core.erl')
-rw-r--r--src/m3ua_core.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/m3ua_core.erl b/src/m3ua_core.erl
index 3211bfa..3986305 100644
--- a/src/m3ua_core.erl
+++ b/src/m3ua_core.erl
@@ -277,7 +277,7 @@ asp_active(#m3ua_msg{version = 1, msg_class = ?M3UA_MSGC_TRANSFER,
msg_type = ?M3UA_MSGT_XFR_DATA, payload = Params}, LoopDat) ->
% Data transfer from remote entity: Send MTP-TRANSFER.ind primitive to the user
Mtp3 = proplists:get_value(?M3UA_IEI_PROTOCOL_DATA, Params),
- send_prim_to_user(LoopDat, osmo_util:make_prim('MTP','TRANSFER',indication,[Mtp3])),
+ send_prim_to_user(LoopDat, osmo_util:make_prim('MTP','TRANSFER',indication,Mtp3)),
{next_state, asp_active, LoopDat};
asp_active(#m3ua_msg{msg_class = ?M3UA_MSGC_ASPTM,
msg_type = ?M3UA_MSGT_ASPTM_ASPIA_ACK}, LoopDat) ->