diff options
author | Greg Stein <gstein@apache.org> | 2001-02-18 03:58:53 +0100 |
---|---|---|
committer | Greg Stein <gstein@apache.org> | 2001-02-18 03:58:53 +0100 |
commit | dd9b08e32169354e347fd4940733b805bc507c6c (patch) | |
tree | 08e866790b10ceb6b78c24213f2cd453507f093a /modules/aaa/mod_auth_digest.c | |
parent | Change a few "no" module to "most". Leave suexec: it must be explicitly (diff) | |
download | apache2-dd9b08e32169354e347fd4940733b805bc507c6c.tar.xz apache2-dd9b08e32169354e347fd4940733b805bc507c6c.zip |
*) Introduce "ap_conf_vector_t" type to assist with legibility and provide
some type safety. (unfortunately, our old "void*" is type-safe with the
new one, but over time we should be better)
*) Propagate the new type to all appropriate functions.
*) Random cleaning, whitespace, stylistic nits.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88225 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/aaa/mod_auth_digest.c')
-rw-r--r-- | modules/aaa/mod_auth_digest.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c index 3b1b66c4de..8c95d3385d 100644 --- a/modules/aaa/mod_auth_digest.c +++ b/modules/aaa/mod_auth_digest.c @@ -325,6 +325,8 @@ static void log_error_and_cleanup(char *msg, apr_status_t sts, server_rec *s) cleanup_tables(NULL); } +#if APR_HAS_SHARED_MEMORY + static void initialize_tables(server_rec *s, apr_pool_t *ctx) { unsigned long idx; @@ -392,6 +394,9 @@ static void initialize_tables(server_rec *s, apr_pool_t *ctx) return; } +#endif /* APR_HAS_SHARED_MEMORY */ + + static void initialize_module(apr_pool_t *p, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *s) { |