You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2008/11/23 18:57:07 UTC

svn commit: r720018 - /httpd/httpd/trunk/modules/filters/mod_sed.c

Author: jim
Date: Sun Nov 23 09:57:07 2008
New Revision: 720018

URL: http://svn.apache.org/viewvc?rev=720018&view=rev
Log:
testing indicates a large buffsize (~8k) is better...

Modified:
    httpd/httpd/trunk/modules/filters/mod_sed.c

Modified: httpd/httpd/trunk/modules/filters/mod_sed.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/filters/mod_sed.c?rev=720018&r1=720017&r2=720018&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/filters/mod_sed.c (original)
+++ httpd/httpd/trunk/modules/filters/mod_sed.c Sun Nov 23 09:57:07 2008
@@ -26,7 +26,7 @@
 #include "libsed.h"
 
 static const char *sed_filter_name = "Sed";
-#define MODSED_OUTBUF_SIZE 4000
+#define MODSED_OUTBUF_SIZE 8000
 
 typedef struct sed_expr_config
 {