From a6ebd05abf74aa4b860141c1728ab4364dbc6c01 Mon Sep 17 00:00:00 2001 From: Edward Rudd Date: Tue, 28 Oct 2008 21:59:55 +0000 Subject: fix buffer size. --- diff --git a/utility/logparse.c b/utility/logparse.c index 67f51b6..7c52ff6 100644 --- a/utility/logparse.c +++ b/utility/logparse.c @@ -368,7 +368,7 @@ apr_status_t parser_parsefile(config_t *cfg, config_filestat_t *fstat) } do { - rv = apr_file_gets(buff, 1024, file); + rv = apr_file_gets(buff, 2048, file); if (rv == APR_SUCCESS) { int i,m, cont = 0; config_filter_t *filters; -- cgit v0.9.2