[svn-commits] kmoore: branch 1.8 r361329 - /branches/1.8/apps/app_dial.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Apr 6 08:30:46 CDT 2012


Author: kmoore
Date: Fri Apr  6 08:30:40 2012
New Revision: 361329

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=361329
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)

Modified:
    branches/1.8/apps/app_dial.c

Modified: branches/1.8/apps/app_dial.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/apps/app_dial.c?view=diff&rev=361329&r1=361328&r2=361329
==============================================================================
--- branches/1.8/apps/app_dial.c (original)
+++ branches/1.8/apps/app_dial.c Fri Apr  6 08:30:40 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 svn-commits mailing list