From 2541ef82f41a5979d5d0c2504491718681337275 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Sat, 8 Jun 2002 18:53:13 +0000 Subject: renames for apr_xlate_sb_get, which was far more complicated. It seems we are relying more and more on link entry points. We really can't be going about macroizing out NOTIMPL cases, since there is no way to later pick up the features when you replace with the same library built for support of a given feature, or swap it out later. So all platforms need to include unix/xlate.c with #define APR_HAS_XLATE 0 to at least gain the ENOTIMPL entry points. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63473 13f79535-47bb-0310-9956-ffa450edef68 --- passwd/apr_md5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'passwd') diff --git a/passwd/apr_md5.c b/passwd/apr_md5.c index 4c9ac4969..58d1119ee 100644 --- a/passwd/apr_md5.c +++ b/passwd/apr_md5.c @@ -216,7 +216,7 @@ APR_DECLARE(apr_status_t) apr_md5_set_xlate(apr_md5_ctx_t *context, /* TODO: remove the single-byte-only restriction from this code */ - rv = apr_xlate_get_sb(xlate, &is_sb); + rv = apr_xlate_sb_get(xlate, &is_sb); if (rv != APR_SUCCESS) { return rv; } -- cgit v1.2.1