From: Greg Ames Date: Mon, 18 Feb 2002 18:19:06 +0000 (+0000) Subject: one step closer to happiness on ebcdic boxes X-Git-Tag: 2.0.33~204 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cd94c05f4b4ee002ab8004cee2d08524792ca0b8;p=apache one step closer to happiness on ebcdic boxes git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93482 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/support/htdbm.c b/support/htdbm.c index 42eab884c8..7ae6f22e56 100644 --- a/support/htdbm.c +++ b/support/htdbm.c @@ -181,7 +181,7 @@ static apr_status_t htdbm_init(apr_pool_t **pool, htdbm_t **hdbm) (*hdbm)->pool = *pool; #if APR_CHARSET_EBCDIC - rv = apr_xlate_open(to_ascii, "ISO8859-1", APR_DEFAULT_CHARSET, (*hdbm)->pool); + rv = apr_xlate_open(&((*hdbm)->to_ascii), "ISO8859-1", APR_DEFAULT_CHARSET, (*hdbm)->pool); if (rv) { fprintf(stderr, "apr_xlate_open(to ASCII)->%d\n", rv); return APR_EGENERAL;