From a39754a92cc41611860fbb2d09d758579394f1d1 Mon Sep 17 00:00:00 2001 From: Super User Date: Sat, 22 Mar 2008 15:38:04 +0100 Subject: [PATCH] fixed dialtone bug modified: apppbx.cpp --- apppbx.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apppbx.cpp b/apppbx.cpp index 243e4dd..077aae5 100644 --- a/apppbx.cpp +++ b/apppbx.cpp @@ -2877,7 +2877,10 @@ void EndpointAppPBX::join_overlap(struct port_list *portlist, int message_type, } if (e_action) if (e_action->index == ACTION_OUTDIAL || e_action->index == ACTION_EXTERNAL) { - set_tone(portlist, "dialtone"); + if (e_dialinginfo.id[0]) + set_tone(portlist, "dialing"); + else + set_tone(portlist, "dialtone"); return; } if (e_ext.number[0]) -- 2.13.6