Skip to content
Snippets Groups Projects
Commit 3b89edc0 authored by BJ Weschke's avatar BJ Weschke
Browse files

More code optimizations. Thanks kpfleming!


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18025 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 54832880
No related branches found
No related tags found
No related merge requests found
......@@ -207,19 +207,8 @@ static void isAnsweringMachine(struct ast_channel *chan, void *data)
while ((ret = ast_waitfor(chan, totalAnalysisTime)))
{
if (ret < 0) {
/* No Frame: Called Party Must Have Dropped */
if (option_verbose > 2)
ast_verbose(VERBOSE_PREFIX_3 "AMD: HANGUP\n");
if (option_debug)
ast_log(LOG_DEBUG, "Got hangup\n");
strcpy(amdStatus , "HANGUP" );
strcpy(amdCause , "" );
break;
}
f = ast_read(chan);
if (!f ) {
/* No Frame: Called Party Must Have Dropped */
if (ret < 0 || !(f = ast_read(chan))) {
/* No Frame OR Error on ast_waitfor : Called Party Must Have Dropped */
if (option_verbose > 2)
ast_verbose(VERBOSE_PREFIX_3 "AMD: HANGUP\n");
if (option_debug)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment