From b141ec57a2f4f9568a058474ead1d4b35cbd4a3f Mon Sep 17 00:00:00 2001 From: Ricardo Jesus Date: Thu, 3 Sep 2015 17:04:27 +0100 Subject: [PATCH] Increased char size. --- src/gen/wsesslog.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gen/wsesslog.c b/src/gen/wsesslog.c index 2dafebf..c76dd1e 100755 --- a/src/gen/wsesslog.c +++ b/src/gen/wsesslog.c @@ -388,11 +388,11 @@ parse_config (void) FILE *fp; int lineno, i, reqnum; Sess_Private_Data *sptr; - char line[10000]; /* some uri's get pretty long */ - char uri[10000]; /* some uri's get pretty long */ + char line[500000]; /* some uri's get pretty long */ + char uri[500000]; /* some uri's get pretty long */ char method_str[1000]; - char this_arg[10000]; - char contents[10000]; + char this_arg[500000]; + char contents[500000]; double think_time; int bytes_read; REQ *reqptr;