[asterisk-commits] file: trunk r232356 - in /trunk: ./ apps/app_amd.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Dec 2 11:06:58 CST 2009


Author: file
Date: Wed Dec  2 11:06:54 2009
New Revision: 232356

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=232356
Log:
Merged revisions 232355 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r232355 | file | 2009-12-02 13:04:52 -0400 (Wed, 02 Dec 2009) | 5 lines
  
  Fix a bug where if you hung up very quickly after calling AMD it would overwrite the AMDSTATUS of HANGUP with TOOLONG.
  
  (closes issue #16239)
  Reported by: CGMChris
........

Modified:
    trunk/   (props changed)
    trunk/apps/app_amd.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/apps/app_amd.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_amd.c?view=diff&rev=232356&r1=232355&r2=232356
==============================================================================
--- trunk/apps/app_amd.c (original)
+++ trunk/apps/app_amd.c Wed Dec  2 11:06:54 2009
@@ -264,6 +264,7 @@
 			ast_verb(3, "AMD: Channel [%s]. HANGUP\n", chan->name);
 			ast_debug(1, "Got hangup\n");
 			strcpy(amdStatus, "HANGUP");
+			res = 1;
 			break;
 		}
 




More information about the asterisk-commits mailing list