summaryrefslogtreecommitdiff
path: root/include/util_ebcdic.h
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-12-20 16:44:01 +0000
committerJeff Trawick <trawick@apache.org>2000-12-20 16:44:01 +0000
commit351725e7266964eea4a0de39b6492fe5dfddf12d (patch)
treed47b145d0c624f40f21e2d78885823ff3ca1acd9 /include/util_ebcdic.h
parentefe5ac62bd9c90d5b8f7f8694b581cfa21c9c818 (diff)
downloadhttpd-351725e7266964eea4a0de39b6492fe5dfddf12d.tar.gz
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 'include/util_ebcdic.h')
-rw-r--r--include/util_ebcdic.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/util_ebcdic.h b/include/util_ebcdic.h
index 149784069f..4f2117d313 100644
--- a/include/util_ebcdic.h
+++ b/include/util_ebcdic.h
@@ -72,7 +72,7 @@ extern "C" {
* @package Utilities for EBCDIC conversion
*/
-#ifdef AP_CHARSET_EBCDIC
+#if APR_CHARSET_EBCDIC
/**
* Setup all of the global translation handlers
@@ -100,11 +100,11 @@ void ap_xlate_proto_from_ascii(char *buffer, apr_size_t len);
}
#endif
-#else /* AP_CHARSET_EBCDIC */
+#else /* APR_CHARSET_EBCDIC */
#define ap_xlate_proto_to_ascii(x,y) /* NOOP */
#define ap_xlate_proto_from_ascii(x,y) /* NOOP */
-#endif /* AP_CHARSET_EBCDIC */
+#endif /* APR_CHARSET_EBCDIC */
#endif /* !APACHE_UTIL_EBCDIC_H */