[Asterisk-cvs] asterisk ChangeLog,1.85,1.86 app.c,1.82,1.83
russell
russell
Thu Nov 10 18:21:22 CST 2005
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv9838
Modified Files:
ChangeLog app.c
Log Message:
issue #5630, #5711, and probably others
Index: ChangeLog
===================================================================
RCS file: /usr/cvsroot/asterisk/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -d -r1.85 -r1.86
--- ChangeLog 10 Nov 2005 23:08:00 -0000 1.85
+++ ChangeLog 10 Nov 2005 23:12:09 -0000 1.86
@@ -4,6 +4,7 @@
2005-11-10 Russell Bryant <russell at digium.com>
+ * app.c (ast_app_separate_args): Don't consider the open parenthesis as part of the arguments to an option.
* many files: Change all references to ast_separate_app_args to ast_app_separate_args
* many files in apps/: Clean up some application descriptions. Make sure all descriptions in changed files are wrapped at 80 characters.
Index: app.c
===================================================================
RCS file: /usr/cvsroot/asterisk/app.c,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -d -r1.82 -r1.83
--- app.c 3 Nov 2005 21:19:10 -0000 1.82
+++ app.c 10 Nov 2005 23:12:09 -0000 1.83
@@ -1543,7 +1543,7 @@
argloc = options[curarg].arg_index;
if (*s == '(') {
/* Has argument */
- arg = s;
+ arg = ++s;
while (*++s && (*s != ')'));
if (*s) {
if (argloc)
More information about the svn-commits
mailing list