summaryrefslogtreecommitdiff
path: root/passwd
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-06-08 18:53:13 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-06-08 18:53:13 +0000
commit7a7a86df61b3d359268c13a4670037aeea88d682 (patch)
tree90a8881f33af64df285123f0d3c6014ccbbca34c /passwd
parent825631f835119a13526fe34752a035d20a558233 (diff)
downloadlibapr-7a7a86df61b3d359268c13a4670037aeea88d682.tar.gz
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: http://svn.apache.org/repos/asf/apr/apr/trunk@63473 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'passwd')
-rw-r--r--passwd/apr_md5.c2
1 files changed, 1 insertions, 1 deletions
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;
}