]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Provide more space for all the data which can appear in an originating
authorTilghman Lesher <tilghman@meg.abyt.es>
Thu, 13 Nov 2008 21:24:00 +0000 (21:24 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Thu, 13 Nov 2008 21:24:00 +0000 (21:24 +0000)
channel name.
(closes issue #13398)
 Reported by: bamby
 Patches:
       manager.c.diff uploaded by bamby (license 430)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@156688 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/manager.c

index 20b5c6ff35ba9ce5bc6e9afe14333925a896fcea..fca2cda50418f1db8d7ce752b0a61fbab48772b3 100644 (file)
@@ -73,7 +73,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
 
 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;
        char app[AST_MAX_APP];