--- asterisk_orig-1.0.2/channels/h323/ast_h323.cpp 2004-09-21 18:42:37.000000000 +0000 +++ asterisk-1.0.2/channels/h323/ast_h323.cpp 2004-12-05 10:36:43.000000000 +0000 @@ -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, (const char *)GetCallToken()); H323Connection::SendUserInputTone(tone, duration); } @@ -732,7 +732,7 @@ if (h323debug) { cout << " -- Received user input tone (" << tone << ") from remote" << endl; } - on_send_digit(GetCallReference(), tone); + on_send_digit(GetCallReference(), tone, (const char *)GetCallToken()); } H323Connection::OnUserInputTone(tone, duration, logicalChannel, rtpTimestamp); } @@ -743,7 +743,7 @@ if (h323debug) { cout << " -- Received user input string (" << value << ") from remote." << endl; } - on_send_digit(GetCallReference(), value[0]); + on_send_digit(GetCallReference(), value[0], (const char *)GetCallToken()); } }