[asterisk-commits] tilghman: branch 1.6.1 r156691 - in /branches/1.6.1: ./ main/manager.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Nov 13 15:31:28 CST 2008
Author: tilghman
Date: Thu Nov 13 15:31:27 2008
New Revision: 156691
URL: http://svn.digium.com/view/asterisk?view=rev&rev=156691
Log:
Merged revisions 156690 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
................
r156690 | tilghman | 2008-11-13 15:30:41 -0600 (Thu, 13 Nov 2008) | 14 lines
Merged revisions 156688 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r156688 | tilghman | 2008-11-13 15:24:00 -0600 (Thu, 13 Nov 2008) | 7 lines
Provide more space for all the data which can appear in an originating
channel name.
(closes issue #13398)
Reported by: bamby
Patches:
manager.c.diff uploaded by bamby (license 430)
........
................
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/main/manager.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/main/manager.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/main/manager.c?view=diff&rev=156691&r1=156690&r2=156691
==============================================================================
--- branches/1.6.1/main/manager.c (original)
+++ branches/1.6.1/main/manager.c Thu Nov 13 15:31:27 2008
@@ -2239,7 +2239,8 @@
/*! \brief helper function for originate */
struct fast_originate_helper {
char tech[AST_MAX_EXTENSION];
- char data[AST_MAX_EXTENSION];
+ /*! data can contain a channel name, extension number, username, password, etc. */
+ char data[512];
int timeout;
int format; /*!< Codecs used for a call */
char app[AST_MAX_APP];
More information about the asterisk-commits
mailing list