From: Frédéric Marchal Date: Fri, 5 Feb 2010 12:03:29 +0000 (+0000) Subject: Increase URL buffer size to match the changes in log.c X-Git-Tag: v2_2_7~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=976b0edff8800a156b3b03446f21455d683f5569;p=thirdparty%2Fsarg.git Increase URL buffer size to match the changes in log.c --- diff --git a/authfail.c b/authfail.c index a75e46b..1e7a93a 100644 --- a/authfail.c +++ b/authfail.c @@ -32,7 +32,7 @@ void authfail_report(void) FILE *fp_in = NULL, *fp_ou = NULL; - char url[MAXLEN]; + char url[2*MAXLEN]; char authfail_in[MAXLEN]; char per[MAXLEN]; char report[MAXLEN]; diff --git a/denied.c b/denied.c index d7b8de8..fb94c88 100644 --- a/denied.c +++ b/denied.c @@ -32,7 +32,7 @@ void gen_denied_report(void) FILE *fp_in = NULL, *fp_ou = NULL; - char url[MAXLEN]; + char url[2*MAXLEN]; char denied_in[MAXLEN]; char per[MAXLEN]; char report[MAXLEN];