[asterisk-commits] tilghman: branch 1.6.0 r190727 - in /branches/1.6.0: ./ main/pbx.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Apr 27 14:36:09 CDT 2009
Author: tilghman
Date: Mon Apr 27 14:36:05 2009
New Revision: 190727
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=190727
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.0/ (props changed)
branches/1.6.0/main/pbx.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/main/pbx.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.0/main/pbx.c?view=diff&rev=190727&r1=190726&r2=190727
==============================================================================
--- branches/1.6.0/main/pbx.c (original)
+++ branches/1.6.0/main/pbx.c Mon Apr 27 14:36:05 2009
@@ -939,7 +939,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