You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by st...@apache.org on 2003/01/08 18:47:26 UTC

cvs commit: apr-util/xlate xlate.c

stoddard    2003/01/08 09:47:26

  Modified:    xlate    xlate.c
  Log:
  There is no such beast as APU_HAS_APR_ICONV
  
  Revision  Changes    Path
  1.14      +3 -3      apr-util/xlate/xlate.c
  
  Index: xlate.c
  ===================================================================
  RCS file: /home/cvs/apr-util/xlate/xlate.c,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- xlate.c	1 Jan 2003 00:02:22 -0000	1.13
  +++ xlate.c	8 Jan 2003 17:47:26 -0000	1.14
  @@ -81,7 +81,7 @@
   #include <apr_iconv.h>
   #endif
   
  -#if defined(APU_ICONV_INBUF_CONST) || APU_HAS_APR_ICONV
  +#if defined(APU_ICONV_INBUF_CONST) || APU_HAVE_APR_ICONV
   #define ICONV_INBUF_TYPE const char **
   #else
   #define ICONV_INBUF_TYPE char **
  @@ -119,7 +119,7 @@
   {
       apr_xlate_t *old = convset;
   
  -#if APU_HAS_APR_ICONV
  +#if APU_HAVE_APR_ICONV
       if (old->ich != (apr_iconv_t)-1) {
           return apr_iconv_close(old->ich);
       }
  @@ -222,7 +222,7 @@
           make_identity_table(new);
       }
   
  -#if APU_HAS_APR_ICONV
  +#if APU_HAVE_APR_ICONV
       if (!found) {
           rv = apr_iconv_open(topage, frompage, pool, &new->ich);
           if (rv != APR_SUCCESS) {