[svn-commits] tilghman: trunk r281726 - in /trunk: ./ apps/app_readexten.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Aug 11 10:20:34 CDT 2010


Author: tilghman
Date: Wed Aug 11 10:20:29 2010
New Revision: 281726

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

................
  r281723 | tilghman | 2010-08-11 10:18:40 -0500 (Wed, 11 Aug 2010) | 14 lines
  
  Merged revisions 281722 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.6.2
  
  ........
    r281722 | tilghman | 2010-08-11 10:17:20 -0500 (Wed, 11 Aug 2010) | 7 lines
    
    Only set status TIMEOUT, if we have no digits.
    
    (closes issue #15188)
     Reported by: jcovert
     Patches: 
           app_readexten.c.patch-1.6.2.8-rc1 uploaded by jcovert (license 551)
  ........
................

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

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

Modified: trunk/apps/app_readexten.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_readexten.c?view=diff&rev=281726&r1=281725&r2=281726
==============================================================================
--- trunk/apps/app_readexten.c (original)
+++ trunk/apps/app_readexten.c Wed Aug 11 10:20:29 2010
@@ -232,7 +232,7 @@
 			if (res < 1) {		/* timeout expired or hangup */
 				if (ast_check_hangup(chan)) {
 					status = "HANGUP";
-				} else {
+				} else if (x == 0) {
 					pbx_builtin_setvar_helper(chan, arglist.variable, "t");
 					status = "TIMEOUT";
 				}




More information about the svn-commits mailing list