diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2002-01-10 03:58:10 +0100 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2002-01-10 03:58:10 +0100 |
commit | 73430e922d4c0dcf9e3909cd3804db020d81da86 (patch) | |
tree | 92510a6f931a375f440ac4d7d4a703f6d78eba3a /modules/aaa/mod_auth_digest.c | |
parent | oops. (diff) | |
download | apache2-73430e922d4c0dcf9e3909cd3804db020d81da86.tar.xz apache2-73430e922d4c0dcf9e3909cd3804db020d81da86.zip |
Fixing the apr_shm_ and apr_rmm_ args back to a warning state was good.
Enabling APR_HAS_SHARED_MEMORY again in the previous patch was bad.
This can be toggled once we straighten out all the pointers into offsets.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92794 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, 4 insertions, 1 deletions
diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c index e82f04a320..243b29963b 100644 --- a/modules/aaa/mod_auth_digest.c +++ b/modules/aaa/mod_auth_digest.c @@ -119,8 +119,11 @@ #include "apr_shm.h" #include "apr_rmm.h" +/* Disable shmem until pools/init gets sorted out + * remove following two lines when fixed + */ #undef APR_HAS_SHARED_MEMORY -#define APR_HAS_SHARED_MEMORY 1 +#define APR_HAS_SHARED_MEMORY 0 /* struct to hold the configuration info */ |