* modules/fcgid/fcgid_conf.h: Bump maximum env var size to 256 bytes.
  Increases sizeof(fcgid_command) from 13K to 21K on x86_64 but 128 is
  a fairly restrictive env var length, so seems worthwhile.


git-svn-id: https://svn.apache.org/repos/asf/httpd/mod_fcgid/trunk@1847623 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/modules/fcgid/fcgid_conf.h b/modules/fcgid/fcgid_conf.h
index e54f64c..bcd938e 100644
--- a/modules/fcgid/fcgid_conf.h
+++ b/modules/fcgid/fcgid_conf.h
@@ -138,7 +138,7 @@
  * to limit shared memory use
  */
 #define INITENV_KEY_LEN 64
-#define INITENV_VAL_LEN 128
+#define INITENV_VAL_LEN 256
 #define INITENV_CNT 64
 typedef struct {
     char initenv_key[INITENV_CNT][INITENV_KEY_LEN];