diff options
author | Jeff Trawick <trawick@apache.org> | 2000-12-20 17:44:01 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2000-12-20 17:44:01 +0100 |
commit | 351725e7266964eea4a0de39b6492fe5dfddf12d (patch) | |
tree | d47b145d0c624f40f21e2d78885823ff3ca1acd9 /server/util_ebcdic.c | |
parent | Add a note about the directives to add input and output filters. (diff) | |
download | apache2-351725e7266964eea4a0de39b6492fe5dfddf12d.tar.xz apache2-351725e7266964eea4a0de39b6492fe5dfddf12d.zip |
Switch to the APR-provided APR_CHARSET_EBCDIC feature test macro.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87460 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/util_ebcdic.c')
-rw-r--r-- | server/util_ebcdic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/util_ebcdic.c b/server/util_ebcdic.c index 0089b4e88b..c83719e64e 100644 --- a/server/util_ebcdic.c +++ b/server/util_ebcdic.c @@ -58,7 +58,7 @@ #include "ap_config.h" -#ifdef AP_CHARSET_EBCDIC +#if APR_CHARSET_EBCDIC #include "apr_strings.h" #include "httpd.h" @@ -141,4 +141,4 @@ void ap_xlate_proto_from_ascii(char *buffer, apr_size_t len) buffer, &outbytes_left); } -#endif /* AP_CHARSET_EBCDIC */ +#endif /* APR_CHARSET_EBCDIC */ |