[asterisk-commits] kmoore: branch 10 r361330 - in /branches/10: ./	apps/app_dial.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Fri Apr  6 08:31:55 CDT 2012
    
    
  
Author: kmoore
Date: Fri Apr  6 08:31:51 2012
New Revision: 361330
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=361330
Log:
Remove unnecessary error message in app_dial.c
The error message for failure to stop autoservice after a gosub or macro call
during a dial was removed for macro while Asterisk 1.4 was still being actively
developed. The corresponding gosub error message was never removed.
(closes issue ASTERISK-19551)
........
Merged revisions 361329 from http://svn.asterisk.org/svn/asterisk/branches/1.8
Modified:
    branches/10/   (props changed)
    branches/10/apps/app_dial.c
Propchange: branches/10/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: branches/10/apps/app_dial.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/apps/app_dial.c?view=diff&rev=361330&r1=361329&r2=361330
==============================================================================
--- branches/10/apps/app_dial.c (original)
+++ branches/10/apps/app_dial.c Fri Apr  6 08:31:51 2012
@@ -2767,7 +2767,6 @@
 			}
 
 			if (ast_autoservice_stop(chan) < 0) {
-				ast_log(LOG_ERROR, "Could not stop autoservice on calling channel\n");
 				res9 = -1;
 			}
 			
    
    
More information about the asterisk-commits
mailing list