[asterisk-commits] tilghman: branch 1.6.1 r190728 - in /branches/1.6.1: ./ main/pbx.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Apr 27 14:36:19 CDT 2009


Author: tilghman
Date: Mon Apr 27 14:36:15 2009
New Revision: 190728

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=190728
Log:
Merged revisions 190726 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r190726 | tilghman | 2009-04-27 14:34:48 -0500 (Mon, 27 Apr 2009) | 4 lines
  
  Don't warn on pipe in the System call.
  (closes issue #14979)
   Reported by: pj
........

Modified:
    branches/1.6.1/   (props changed)
    branches/1.6.1/main/pbx.c

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/main/pbx.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.1/main/pbx.c?view=diff&rev=190728&r1=190727&r2=190728
==============================================================================
--- branches/1.6.1/main/pbx.c (original)
+++ branches/1.6.1/main/pbx.c Mon Apr 27 14:36:15 2009
@@ -949,7 +949,8 @@
 	c->data = data;
 	if (app->module)
 		u = __ast_module_user_add(app->module, c);
-	if (!ast_strlen_zero(data) && strchr(data, '|') && !strchr(data, ',')) {
+	if (strcasecmp(app->name, "system") && !ast_strlen_zero(data) &&
+			strchr(data, '|') && !strchr(data, ',')) {
 		ast_log(LOG_WARNING, "The application delimiter is now the comma, not "
 			"the pipe.  Did you forget to convert your dialplan?  (%s(%s))\n",
 			app->name, (char *) data);




More information about the asterisk-commits mailing list