TCO: Pass only Pid, not complete From tuple as Usap PID to DHA

This commit is contained in:
Harald Welte 2012-01-30 21:12:23 +01:00
parent d03ed86648
commit 9bdce61410
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ handle_call(dialogueID, From, State) ->
% shutdown the server
handle_call(stop, _From, State) ->
{stop, shutdown, ok, State};
handle_call({local_new_trans, OTID}, Usap, State) ->
handle_call({local_new_trans, OTID}, {Usap, Ref}, State) ->
% Create a Transaction State Machine (TSM)
ChildName = list_to_atom("tcap_trans_sup_" ++ integer_to_list(OTID)),
StartFunc = get_start(out_transaction, [OTID, Usap] , State),