[asterisk-commits] tilghman: trunk r162930 - /trunk/main/pbx.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Dec 10 17:01:15 CST 2008
Author: tilghman
Date: Wed Dec 10 17:01:14 2008
New Revision: 162930
URL: http://svn.digium.com/view/asterisk?view=rev&rev=162930
Log:
Previously missing line, now the substitution works correctly
Modified:
trunk/main/pbx.c
Modified: trunk/main/pbx.c
URL: http://svn.digium.com/view/asterisk/trunk/main/pbx.c?view=diff&rev=162930&r1=162929&r2=162930
==============================================================================
--- trunk/main/pbx.c (original)
+++ trunk/main/pbx.c Wed Dec 10 17:01:14 2008
@@ -7467,6 +7467,7 @@
ast_copy_string(c.exten, extension, sizeof(c.exten));
ast_copy_string(c.context, con->name, sizeof(c.context));
pbx_substitute_variables_helper(&c, application, expand_buf, sizeof(expand_buf));
+ application = expand_buf;
}
length = sizeof(struct ast_exten);
More information about the asterisk-commits
mailing list