-const char showargs_rcs[] = "$Id: showargs.c,v 1.12 2001/06/04 10:41:52 swa Exp $";
+const char showargs_rcs[] = "$Id: showargs.c,v 1.13 2001/06/06 09:37:59 sarantis Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/showargs.c,v $
  *
  * Revisions   :
  *    $Log: showargs.c,v $
+ *    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
  *
  *********************************************************************/
 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++)
       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;
 }
 
 
 
    config->proxy_args_trailer = b;
 
+   return b;
 }