diff options
author | Doug MacEachern <dougm@apache.org> | 2000-04-28 20:27:55 +0200 |
---|---|---|
committer | Doug MacEachern <dougm@apache.org> | 2000-04-28 20:27:55 +0200 |
commit | 2f45db7e82f6f9112dce4a8297fc1bd997211ca0 (patch) | |
tree | a1b8f9bc3fdeb4ab043f3830a4b26ef04dc11eb7 /modules/mappers/mod_rewrite.h | |
parent | Win32: (diff) | |
download | apache2-2f45db7e82f6f9112dce4a8297fc1bd997211ca0.tar.xz apache2-2f45db7e82f6f9112dce4a8297fc1bd997211ca0.zip |
back out APR_ prefix for TRUE,FALSE
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85081 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/mappers/mod_rewrite.h')
-rw-r--r-- | modules/mappers/mod_rewrite.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/mappers/mod_rewrite.h b/modules/mappers/mod_rewrite.h index b46e8e6830..a09d51474c 100644 --- a/modules/mappers/mod_rewrite.h +++ b/modules/mappers/mod_rewrite.h @@ -197,14 +197,14 @@ #define CACHE_TLB_ROWS 1024 #define CACHE_TLB_COLS 4 -#ifndef APR_FALSE -#define APR_FALSE 0 -#define APR_TRUE !APR_FALSE +#ifndef FALSE +#define FALSE 0 +#define TRUE !FALSE #endif #ifndef NO -#define NO APR_FALSE -#define YES APR_TRUE +#define NO FALSE +#define YES TRUE #endif #ifndef RAND_MAX |