stoddard    99/08/17 13:07:47

  Modified:    mpm/src/main http_core.c
               mpm/src/modules/standard mod_access.c
  Log:
  Fix a couple of WIN32 compile warnings
  
  Revision  Changes    Path
  1.23      +1 -1      apache-2.0/mpm/src/main/http_core.c
  
  Index: http_core.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/mpm/src/main/http_core.c,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- http_core.c       1999/08/16 22:25:38     1.22
  +++ http_core.c       1999/08/17 20:07:46     1.23
  @@ -2660,7 +2660,7 @@
   static unsigned short core_port(const request_rec *r)
       { return DEFAULT_HTTP_PORT; }
   
  -static void register_hooks()
  +static void register_hooks(void)
   {
       ap_hook_translate_name(core_translate,NULL,NULL,HOOK_REALLY_LAST);
       ap_hook_process_connection(ap_process_http_connection,NULL,NULL,
  
  
  
  1.16      +1 -1      apache-2.0/mpm/src/modules/standard/mod_access.c
  
  Index: mod_access.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/mpm/src/modules/standard/mod_access.c,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- mod_access.c      1999/08/15 00:11:14     1.15
  +++ mod_access.c      1999/08/17 20:07:47     1.16
  @@ -384,7 +384,7 @@
       return ret;
   }
   
  -static void register_hooks()
  +static void register_hooks(void)
   {
       ap_hook_access_checker(check_dir_access,NULL,NULL,HOOK_MIDDLE);
   }
  
  
  

Reply via email to