You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bh...@hyperreal.org on 1999/10/06 23:26:59 UTC

cvs commit: apache-2.0/src/main http_main.c util.c

bhyde       99/10/06 14:26:57

  Modified:    src/include httpd.h
               src/main http_main.c util.c
  Log:
  Remove obsolete ap_util_init function.
  
  Revision  Changes    Path
  1.10      +0 -2      apache-2.0/src/include/httpd.h
  
  Index: httpd.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/include/httpd.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- httpd.h	1999/09/20 22:18:43	1.9
  +++ httpd.h	1999/10/06 21:26:51	1.10
  @@ -897,8 +897,6 @@
   /* Prototypes for utilities... util.c.
    */
   
  -extern void ap_util_init(void);
  -
   /* Time */
   extern API_VAR_EXPORT const char ap_month_snames[12][4];
   extern API_VAR_EXPORT const char ap_day_snames[7][4];
  
  
  
  1.9       +0 -1      apache-2.0/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/main/http_main.c,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- http_main.c	1999/10/04 16:37:52	1.8
  +++ http_main.c	1999/10/06 21:26:53	1.9
  @@ -264,7 +264,6 @@
   	ap_server_argv0 = argv[0];
       }
   
  -    ap_util_init();
       ap_util_uri_init();
   
       ap_create_context(&pglobal, NULL);
  
  
  
  1.12      +0 -8      apache-2.0/src/main/util.c
  
  Index: util.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/main/util.c,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- util.c	1999/10/04 17:24:43	1.11
  +++ util.c	1999/10/06 21:26:53	1.12
  @@ -92,14 +92,6 @@
    */
   #define TEST_CHAR(c, f)	(test_char_table[(unsigned)(c)] & (f))
   
  -void ap_util_init(void)
  -{
  -    /* nothing to do... previously there was run-time initialization of
  -     * test_char_table here
  -     */
  -}
  -
  -
   API_VAR_EXPORT const char ap_month_snames[12][4] =
   {
       "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"