trawick 2003/11/16 11:06:40
Modified: hooks apr_hooks.c
Log:
get rid of deprecated functions
fix a function prototype
Revision Changes Path
1.49 +1 -14 apr-util/hooks/apr_hooks.c
Index: apr_hooks.c
===================================================================
RCS file: /home/cvs/apr-util/hooks/apr_hooks.c,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- apr_hooks.c 16 Nov 2003 01:50:10 -0000 1.48
+++ apr_hooks.c 16 Nov 2003 19:06:40 -0000 1.49
@@ -249,7 +249,7 @@
pEntry->paHooks=paHooks;
}
-APU_DECLARE(void) apr_hook_sort_all()
+APU_DECLARE(void) apr_hook_sort_all(void)
{
#ifdef NETWARE
get_apd
@@ -262,12 +262,6 @@
}
}
-/** @deprecated @see apr_hook_sort_all */
-APU_DECLARE(void) apr_sort_hooks()
-{
- apr_hook_sort_all();
-}
-
#ifndef NETWARE
static apr_hash_t *s_phOptionalHooks;
static apr_hash_t *s_phOptionalFunctions;
@@ -321,13 +315,6 @@
fputc(')',stdout);
}
fputc('\n',stdout);
-}
-
-/** @deprecated @see apr_hook_debug_show */
-APU_DECLARE(void) apr_show_hook(const char *szName,const char * const
*aszPre,
- const char * const *aszSucc)
-{
- apr_hook_debug_show(szName, aszPre, aszSucc);
}
/* Optional hook support */