aboutsummaryrefslogtreecommitdiffstats
path: root/config.c
diff options
context:
space:
mode:
authormartinp <martinp@f38db490-d61c-443f-a65b-d21fe96a405b>2003-06-04 18:27:36 +0000
committermartinp <martinp@f38db490-d61c-443f-a65b-d21fe96a405b>2003-06-04 18:27:36 +0000
commit06880169d1ebdaf5ad0d9e90d327f6d39390e765 (patch)
tree1f3cfd09f4355452d97ab91e7f91970cc1d485e6 /config.c
parent48f2e963ee07939f6650faf1ee023eeac7c9b008 (diff)
Increase the buffer to 512 so that we could process longer config lines
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1075 f38db490-d61c-443f-a65b-d21fe96a405b
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;