summaryrefslogtreecommitdiff
path: root/support/htdigest.c
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-08-07 19:26:02 +0000
committerJeff Trawick <trawick@apache.org>2000-08-07 19:26:02 +0000
commit99cf606197e0eb64fb89f3a9b2f5c7e539f854ac (patch)
tree52c89d99dbea2ef426436e9c22e1da6448ea7825 /support/htdigest.c
parentb921ee65b0a3a03a8b41ce900f76ef8d0dbf326b (diff)
downloadhttpd-99cf606197e0eb64fb89f3a9b2f5c7e539f854ac.tar.gz
Fix some problems with the apr conversion so that APACHE_XLATE builds work
again. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86018 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/htdigest.c')
-rw-r--r--support/htdigest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/htdigest.c b/support/htdigest.c
index 195e241304..0699b97a73 100644
--- a/support/htdigest.c
+++ b/support/htdigest.c
@@ -186,7 +186,7 @@ static void add_password(char *user, char *realm, apr_file_t *f)
apr_MD5Init(&context);
#ifdef CHARSET_EBCDIC
- ap_MD5SetXlate(&context, to_ascii);
+ apr_MD5SetXlate(&context, to_ascii);
#endif
apr_MD5Update(&context, (unsigned char *) string, strlen(string));
apr_MD5Final(digest, &context);