This patch fixes a compile failure on EBCDIC boxes. Index: htdbm.c =================================================================== RCS file: /home/cvs/httpd-2.0/support/htdbm.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- htdbm.c 19 Jan 2002 12:16:48 -0000 1.6 +++ htdbm.c 18 Feb 2002 18:19:06 -0000 1.7 @@ -181,7 +181,7 @@ (*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;