From: Joshua Colp Date: Fri, 13 Oct 2006 21:06:09 +0000 (+0000) Subject: Clear the quiet flag too since we are restarting a recognition again (reported on... X-Git-Tag: 1.4.0-beta3~18 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cda9238a47397986e06fed40e4fbd42820f1fc0c;p=thirdparty%2Fasterisk.git Clear the quiet flag too since we are restarting a recognition again (reported on -dev by Stephan Edelman) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@45106 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_speech.c b/res/res_speech.c index 8330333b71..f06638a5d7 100644 --- a/res/res_speech.c +++ b/res/res_speech.c @@ -159,6 +159,7 @@ void ast_speech_start(struct ast_speech *speech) /* Clear any flags that may affect things */ ast_clear_flag(speech, AST_SPEECH_SPOKE); + ast_clear_flag(speech, AST_SPEECH_QUIET); /* If results are on the structure, free them since we are starting again */ if (speech->results != NULL) {