summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorMartin Pycko <martinp@digium.com>2003-06-04 18:27:36 +0000
committerMartin Pycko <martinp@digium.com>2003-06-04 18:27:36 +0000
commit71633c9523aa559a606d538563e703c8592c3bd0 (patch)
tree1f3cfd09f4355452d97ab91e7f91970cc1d485e6 /config.c
parent521e6eece41dd4814d457dbb8155c767edb5b480 (diff)
Increase the buffer to 512 so that we could process longer config lines
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1075 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'config.c')
-rwxr-xr-xconfig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.c b/config.c
index afc43f1c1..d3440cefe 100755
--- a/config.c
+++ b/config.c
@@ -693,7 +693,7 @@ static struct ast_config *__ast_load(char *configfile, struct ast_config *tmp, s
)
{
char fn[256];
- char buf[256];
+ char buf[512];
FILE *f;
int lineno=0;
int master=0;