From 9bdce6141096513775b03a842a5a582cf7ff5ece Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Mon, 30 Jan 2012 21:12:23 +0100 Subject: [PATCH] TCO: Pass only Pid, not complete From tuple as Usap PID to DHA --- TCAP/src/ITU/tcap_tco_server.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TCAP/src/ITU/tcap_tco_server.erl b/TCAP/src/ITU/tcap_tco_server.erl index 3ad480c..e7982d9 100644 --- a/TCAP/src/ITU/tcap_tco_server.erl +++ b/TCAP/src/ITU/tcap_tco_server.erl @@ -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),