summaryrefslogtreecommitdiff
path: root/net/asterisk16/files/patch-channels::h323::ast_h323.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'net/asterisk16/files/patch-channels::h323::ast_h323.cpp')
-rw-r--r--net/asterisk16/files/patch-channels::h323::ast_h323.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/net/asterisk16/files/patch-channels::h323::ast_h323.cpp b/net/asterisk16/files/patch-channels::h323::ast_h323.cpp
deleted file mode 100644
index 6cfae1ec5d05..000000000000
--- a/net/asterisk16/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);
- }
- }
-