You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by gr...@apache.org on 2002/02/18 19:19:06 UTC

cvs commit: httpd-2.0/support htdbm.c

gregames    02/02/18 10:19:06

  Modified:    support  htdbm.c
  Log:
  one step closer to happiness on ebcdic boxes
  
  Revision  Changes    Path
  1.7       +1 -1      httpd-2.0/support/htdbm.c
  
  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;