"Roy T. Fielding" <[EMAIL PROTECTED]> writes:

> > . we *know* that versions of glibc < 2.2 have "const char **"
> >   instead of "char **" so make that work without any hints.m4
> >   stuff (which would have to look at the glibc version)
> 
> Why not check for GCC and simply add -Werror to the compile?

excellent...

...
> I think the final patch should remove the first cast of inbufptr
> that I added in my initial "fix".

You're talking about this I presume...

  @@ -285,7 +285,7 @@
       size_t translated;
   
       if (convset->ich != (iconv_t)-1) {
  -        char *inbufptr = inbuf;
  +        char *inbufptr = (char *)inbuf;
           char *outbufptr = outbuf;
           
           translated = iconv(convset->ich, &inbufptr, 
  
Thanks,

-- 
Jeff Trawick | [EMAIL PROTECTED] | PGP public key at web site:
       http://www.geocities.com/SiliconValley/Park/9289/
             Born in Roswell... married an alien...

Reply via email to