From 10772f4512b5a801798274b46daad214622482b4 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Wed, 26 Mar 2003 17:15:31 +0000 Subject: [PATCH] Additional fix on not sending additional digits git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@697 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- dsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsp.c b/dsp.c index ec3d4d0c8e..a969f043d5 100755 --- a/dsp.c +++ b/dsp.c @@ -1142,7 +1142,7 @@ struct ast_frame *ast_dsp_process(struct ast_channel *chan, struct ast_dsp *dsp, if (digit) { /* Thought we saw one last time. Pretty sure we really have now */ if (dsp->thinkdigit) { - if (dsp->thinkdigit != 'x') { + if ((dsp->thinkdigit != 'x') && (dsp->thinkdigit != digit)) { /* If we found a digit, and we're changing digits, go ahead and send this one, but DON'T stop confmute because we're detecting something else, too... */