You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Dean Gaudet <dg...@hyperreal.org> on 1997/10/07 21:57:47 UTC

cvs commit: apachen/src/modules/example mod_example.c

dgaudet     97/10/07 12:57:46

  Modified:    src/modules/example mod_example.c
  Log:
  eliminate some -Wall warnings
  
  Revision  Changes    Path
  1.20      +2 -2      apachen/src/modules/example/mod_example.c
  
  Index: mod_example.c
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/modules/example/mod_example.c,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- mod_example.c	1997/09/15 11:57:05	1.19
  +++ mod_example.c	1997/10/07 19:57:44	1.20
  @@ -253,6 +253,7 @@
       return (excfg *) get_module_config(r->per_dir_config, &example_module);
   }
   
  +#if 0
   /*
    * Locate our server configuration record for the specified server.
    */
  @@ -270,6 +271,7 @@
   
       return (excfg *) get_module_config(r->request_config, &example_module);
   }
  +#endif
   
   /*
    * This routine sets up some module-wide cells if they haven't been already.
  @@ -320,7 +322,6 @@
       char *where;
       pool *p;
       char *trace_copy;
  -    excfg *rconfig;
   
       /*
        * Make sure our pools and tables are set up - we need 'em.
  @@ -480,7 +481,6 @@
   {
   
       excfg *dcfg;
  -    excfg *rcfg;
   
       dcfg = our_dconfig(r);
       trace_add(r->server, r, dcfg, "example_handler()");