]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove obsolete ap_util_init function.
authorBen Hyde <bhyde@apache.org>
Wed, 6 Oct 1999 21:26:53 +0000 (21:26 +0000)
committerBen Hyde <bhyde@apache.org>
Wed, 6 Oct 1999 21:26:53 +0000 (21:26 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83936 13f79535-47bb-0310-9956-ffa450edef68

include/httpd.h
server/main.c
server/util.c

index 9e76702c95782e84441c5d07c1f87ddbf020a18e..9cfe705ac53bc9c86c1584b73faaec7a8651e1ca 100644 (file)
@@ -897,8 +897,6 @@ struct server_rec {
 /* 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];
index 5d1172650fa626148662de8d432a67b7e98a64f2..60ee4e4a266d4c9c20abc0309ddb19865e582909 100644 (file)
@@ -264,7 +264,6 @@ int main(int argc, char **argv)
        ap_server_argv0 = argv[0];
     }
 
-    ap_util_init();
     ap_util_uri_init();
 
     ap_create_context(&pglobal, NULL);
index 8bb2769a6f437da6b46eaaccf5040c0786990b98..421db3fb07a7d4809e776821a585d4e2a65b2ccc 100644 (file)
@@ -92,14 +92,6 @@ extern int fclose(FILE *);
  */
 #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"