summaryrefslogtreecommitdiff
path: root/passwd
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2002-06-08 18:53:13 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2002-06-08 18:53:13 +0000
commit2541ef82f41a5979d5d0c2504491718681337275 (patch)
tree90a8881f33af64df285123f0d3c6014ccbbca34c /passwd
parentb9ac7b330a4e7ec423eeac7a20b2bacdb0775401 (diff)
downloadapr-2541ef82f41a5979d5d0c2504491718681337275.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: https://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;
}