diff options
author | Ryan Bloom <rbb@apache.org> | 2000-12-19 18:05:48 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-12-19 18:05:48 +0100 |
commit | b5440c348ae9b750b2fa936868f979e9022cf52b (patch) | |
tree | c5c23fc8a0bfe3547f08a8ce208ac4d10fd9ff67 /server/util_md5.c | |
parent | Rework the RFC1413 handling to make it thread-safe, use a timeout (diff) | |
download | apache2-b5440c348ae9b750b2fa936868f979e9022cf52b.tar.xz apache2-b5440c348ae9b750b2fa936868f979e9022cf52b.zip |
Force all Apache functions to be linked into the executable, whether they
are used or not. This uses the same mechanism that is used for APR
and APR-util. This may not be the correct solution, but it works, and that
is what I really care about. This also renames CHARSET_EBCDIC to
AP_CHARSET_EBCDIC. This is for namespace correctness, but it also makes
the exports script a bit easier.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87424 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/util_md5.c')
-rw-r--r-- | server/util_md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/util_md5.c b/server/util_md5.c index b1957a8427..211997d255 100644 --- a/server/util_md5.c +++ b/server/util_md5.c @@ -105,7 +105,7 @@ AP_DECLARE(char *) ap_md5_binary(apr_pool_t *p, const unsigned char *buf, int le */ apr_MD5Init(&my_md5); -#ifdef CHARSET_EBCDIC +#ifdef AP_CHARSET_EBCDIC apr_MD5SetXlate(&my_md5, ap_hdrs_to_ascii); #endif apr_MD5Update(&my_md5, buf, (unsigned int)length); |