]> granicus.if.org Git - apache/commitdiff
one step closer to happiness on ebcdic boxes
authorGreg Ames <gregames@apache.org>
Mon, 18 Feb 2002 18:19:06 +0000 (18:19 +0000)
committerGreg Ames <gregames@apache.org>
Mon, 18 Feb 2002 18:19:06 +0000 (18:19 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93482 13f79535-47bb-0310-9956-ffa450edef68

support/htdbm.c

index 42eab884c8191dfecb56f628ec934bb2ef3c684d..7ae6f22e5662133a56c1230679dc18dd799fabde 100644 (file)
@@ -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;