From: Art Cancro Date: Fri, 11 Sep 2009 15:59:55 +0000 (+0000) Subject: * For manually editing sieve scripts, increased the 256 byte line limit to 4096 bytes. X-Git-Tag: v7.86~851 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=2f3addd014dedc27f03dd95ba2d010aec05a788f * For manually editing sieve scripts, increased the 256 byte line limit to 4096 bytes. --- diff --git a/webcit/sieve.c b/webcit/sieve.c index dc511b4ab..c418c74ca 100644 --- a/webcit/sieve.c +++ b/webcit/sieve.c @@ -45,7 +45,7 @@ void display_sieve(void) char script_names[MAX_SCRIPTS][64]; int num_scripts = 0; int active_script = (-1); - char buf[256]; + char buf[SIZ]; /* Don't make this buffer smaller or it will restrict line length */ int i; int rules_script_is_active = 0;