* For manually editing sieve scripts, increased the 256 byte line limit to 4096 bytes.
authorArt Cancro <ajc@citadel.org>
Fri, 11 Sep 2009 15:59:55 +0000 (15:59 +0000)
committerArt Cancro <ajc@citadel.org>
Fri, 11 Sep 2009 15:59:55 +0000 (15:59 +0000)
webcit/sieve.c

index dc511b4ab83c6bd6d7696a9808486784cdf518d5..c418c74cadffaea413165fe7c69b8f2d53245605 100644 (file)
@@ -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;