diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-03-31 21:33:52 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-31 21:33:52 +0000 | 
| commit | 5804c995e1f72ec7013ddb69b9f5a42d8db25141 (patch) | |
| tree | a755fc76f0d0d482f2a417235456befe9834473f /lib | |
| parent | 13a6f85320e8e288a8d962e86d4f1f3f90b0d36e (diff) | |
Use the new HAVE_NI_WITHSCOPEID define instead of merely checking for the
existance of NI_WITHSCOPEID since some platforms have that define but still
can't function with it set.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/ftp.c | 2 | ||||
| -rw-r--r-- | lib/url.c | 2 | 
2 files changed, 2 insertions, 2 deletions
| @@ -105,7 +105,7 @@  #include "memdebug.h"  #endif -#ifdef NI_WITHSCOPEID +#ifdef HAVE_NI_WITHSCOPEID  #define NIFLAGS NI_NUMERICHOST | NI_NUMERICSERV | NI_WITHSCOPEID  #else  #define NIFLAGS NI_NUMERICHOST | NI_NUMERICSERV @@ -1877,7 +1877,7 @@ static void verboseconnect(struct connectdata *conn,  #ifdef ENABLE_IPV6    {      char hbuf[NI_MAXHOST]; -#ifdef NI_WITHSCOPEID +#ifdef HAVE_NI_WITHSCOPEID  #define NIFLAGS NI_NUMERICHOST | NI_WITHSCOPEID  #else  #define NIFLAGS NI_NUMERICHOST | 
