summaryrefslogtreecommitdiffstats
path: root/server/util_ebcdic.c
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-12-20 17:44:01 +0100
committerJeff Trawick <trawick@apache.org>2000-12-20 17:44:01 +0100
commit351725e7266964eea4a0de39b6492fe5dfddf12d (patch)
treed47b145d0c624f40f21e2d78885823ff3ca1acd9 /server/util_ebcdic.c
parentAdd a note about the directives to add input and output filters. (diff)
downloadapache2-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.c4
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 */