]> granicus.if.org Git - apache/commitdiff
These BUFFs aren't used anymore, so they should be removed from the
authorRyan Bloom <rbb@apache.org>
Thu, 12 Oct 2000 04:12:52 +0000 (04:12 +0000)
committerRyan Bloom <rbb@apache.org>
Thu, 12 Oct 2000 04:12:52 +0000 (04:12 +0000)
cgid module.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86558 13f79535-47bb-0310-9956-ffa450edef68

modules/generators/mod_cgid.c

index a07c37fe464fa66b205aaad0869952e1531fe391..c3840a87840b78b347cb14adf149a1f96607a851 100644 (file)
@@ -89,7 +89,6 @@
 #include "http_log.h" 
 #include "util_script.h" 
 #include "http_conf_globals.h" 
-#include "buff.h" 
 #include "ap_mpm.h"
 #include "unixd.h"
 #include <sys/stat.h>
@@ -148,9 +147,6 @@ typedef struct {
     const char *logname; 
     long logbytes; 
     int bufbytes; 
-    BUFF *bin; 
-    BUFF *bout; 
-    BUFF *berror; 
 } cgid_server_conf; 
 
 /* If a request includes query info in the URL (stuff after "?"), and
@@ -641,7 +637,6 @@ static void *create_cgid_config(apr_pool_t *p, server_rec *s)
     c->logbytes = DEFAULT_LOGBYTES; 
     c->bufbytes = DEFAULT_BUFBYTES; 
     c->sockname = ap_server_root_relative(p, DEFAULT_SOCKET); 
-    c->bin = c->bout = c->berror = NULL; 
     return c; 
 }