- Fixed a comment
[privoxy.git] / showargs.c
index 80247e2..e497182 100644 (file)
@@ -1,4 +1,4 @@
-const char showargs_rcs[] = "$Id: showargs.c,v 1.11 2001/06/03 11:03:48 oes Exp $";
+const char showargs_rcs[] = "$Id: showargs.c,v 1.14 2001/06/07 23:15:40 jongfoster Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/showargs.c,v $
@@ -33,6 +33,16 @@ const char showargs_rcs[] = "$Id: showargs.c,v 1.11 2001/06/03 11:03:48 oes Exp
  *
  * Revisions   :
  *    $Log: showargs.c,v $
+ *    Revision 1.14  2001/06/07 23:15:40  jongfoster
+ *    Removing config->proxy_args_gateways
+ *    Missing return statement added to end_proxy_args().
+ *
+ *    Revision 1.13  2001/06/06 09:37:59  sarantis
+ *    Fix misplaced comment start.
+ *
+ *    Revision 1.12  2001/06/04 10:41:52  swa
+ *    show version string of cgi.h and cgi.c
+ *
  *    Revision 1.11  2001/06/03 11:03:48  oes
  *    Makefile/in
  *
@@ -234,7 +244,7 @@ const char showargs_h_rcs[] = SHOWARGS_H_VERSION;
  *********************************************************************/
 void savearg(char *c, char *o, struct configuration_spec * config)
 {
-   char buf[BUFSIZ];
+   char buf[BUFFER_SIZE];
 
    *buf = '\0';
 
@@ -288,12 +298,10 @@ void savearg(char *c, char *o, struct configuration_spec * config)
  *********************************************************************/
 void init_proxy_args(int argc, const char *argv[], struct configuration_spec * config)
 {
-   const struct gateway *g;
    char * b = NULL;
    int i;
 
    freez(config->proxy_args_header);
-   freez(config->proxy_args_gateways);
  
    
    for (i=0; i < argc; i++)
@@ -302,14 +310,6 @@ void init_proxy_args(int argc, const char *argv[], struct configuration_spec * c
       b = strsav(b, " ");
    }
    config->proxy_args_header = b;
-   b = NULL;
-   for (g = gateways; g->name; g++)
-   {
-      b = strsav(b, g->name);
-      b = strsav(b, " ");
-   }
-   config->proxy_args_gateways = b;
 }
 
 
@@ -327,7 +327,7 @@ void init_proxy_args(int argc, const char *argv[], struct configuration_spec * c
 char *end_proxy_args(struct configuration_spec * config)
 {
    char *b = NULL;
-   char buf[BUFSIZ];
+   char buf[BUFFER_SIZE];
 
    /* Instead of including *all* dot h's in the project (thus creating a
     * tremendous amount of dependencies), I will concede to declaring them
@@ -356,6 +356,8 @@ char *end_proxy_args(struct configuration_spec * config)
    /* In alphabetical order */
    SHOW_RCS(actions_h_rcs)
    SHOW_RCS(actions_rcs)
+   SHOW_RCS(cgi_h_rcs)
+   SHOW_RCS(cgi_rcs)
 #ifdef __MINGW32__
    SHOW_RCS(cygwin_h_rcs)
 #endif
@@ -512,12 +514,13 @@ char *end_proxy_args(struct configuration_spec * config)
    b = strsav(b, "  <li><code>#define <b>FAST_REDIRECTS</b></code> - Enables intercepting remote script redirects.</li>\n");
 #else /* ifndef FAST_REDIRECTS */
    b = strsav(b, "  <li><code>#undef <b>FAST_REDIRECTS</b></code> - Disables intercepting remote script redirects.</li>\n");
-#endif  ndef /* FAST_REDIRECTS */
+#endif /* ndef FAST_REDIRECTS */
 
    b = strsav(b, "</ul>\n<br>\n");
 
    config->proxy_args_trailer = b;
 
+   return b;
 }