Re: typo in getaddrinfo.c

2006-07-01 Thread Simon Josefsson
Mark D. Baushke [EMAIL PROTECTED] writes: Fixed in CVS sources. Installed, thanks! -- Mark 2006-06-30 Jim Hyslop [EMAIL PROTECTED] * getaddrinfo.c: fixed typo Index: getaddrinfo.c === RCS file:

Re: OS/2 and stdarg module

2006-07-01 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Paul Eggert on 7/1/2006 3:27 PM: [EMAIL PROTECTED] (Eric Blake) writes: +#define gl_va_copy(a,b) (a) = (b)]) I'm not familiar with this package, but surely that should be ((a) = (b)), not (a) = (b). In the case of va_copy, POSIX

Re: OS/2 and stdarg module

2006-07-01 Thread Paul Eggert
Eric Blake [EMAIL PROTECTED] writes: In the case of va_copy, POSIX defines it to have void value, so trying to use va_copy for its result is invalid, and the missing parenthesis can't affect a compliant program. (void) va_copy (foo, bar) is a counterexample to that claim. (Never underestimate