From 7011c19a8c96a2f8fb7c04d61cb28cdc507584a6 Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Fri, 21 Jan 2005 15:36:45 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'RELEASE_4_11_0'. --- .../files/patch-channels::h323::ast_h323.cpp | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 net/asterisk-bristuff/files/patch-channels::h323::ast_h323.cpp (limited to 'net/asterisk-bristuff/files/patch-channels::h323::ast_h323.cpp') diff --git a/net/asterisk-bristuff/files/patch-channels::h323::ast_h323.cpp b/net/asterisk-bristuff/files/patch-channels::h323::ast_h323.cpp deleted file mode 100644 index 6cfae1ec5d05..000000000000 --- a/net/asterisk-bristuff/files/patch-channels::h323::ast_h323.cpp +++ /dev/null @@ -1,37 +0,0 @@ - -$FreeBSD$ - ---- channels/h323/ast_h323.cpp.orig -+++ channels/h323/ast_h323.cpp -@@ -722,7 +722,7 @@ - if (h323debug) { - cout << " -- Sending user input tone (" << tone << ") to remote" << endl; - } -- on_send_digit(GetCallReference(), tone); -+ on_send_digit(GetCallReference(), &tone); - H323Connection::SendUserInputTone(tone, duration); - } - -@@ -732,18 +732,20 @@ - if (h323debug) { - cout << " -- Received user input tone (" << tone << ") from remote" << endl; - } -- on_send_digit(GetCallReference(), tone); -+ on_send_digit(GetCallReference(), &tone); - } - H323Connection::OnUserInputTone(tone, duration, logicalChannel, rtpTimestamp); - } - - void MyH323Connection::OnUserInputString(const PString &value) - { -+ char val; - if (mode == H323_DTMF_RFC2833) { - if (h323debug) { - cout << " -- Received user input string (" << value << ") from remote." << endl; - } -- on_send_digit(GetCallReference(), value[0]); -+ val = value[0]; -+ on_send_digit(GetCallReference(), &val); - } - } - -- cgit v1.2.3