]> git.marmaro.de Git - mmh/commitdiff
#ifdef AI_ADDRCONFIG since older IPv4-only systems may not define this flag,
authorEarl Hood <earl@earlhood.com>
Sat, 6 Feb 2010 07:47:38 +0000 (07:47 +0000)
committerEarl Hood <earl@earlhood.com>
Sat, 6 Feb 2010 07:47:38 +0000 (07:47 +0000)
causing files that use to not compile.

sbr/client.c
uip/ftpsbr.c
uip/mhlsbr.c

index a03809e1e1787037301beee3391b16b1648620da..d3374ad4862b934c4a62df3aeeed9bf124c3698a 100644 (file)
@@ -60,7 +60,9 @@ client (char *args, char *service, char *response, int len_response, int debug)
     }
 
     memset(&hints, 0, sizeof(hints));
+#ifdef AI_ADDRCONFIG
     hints.ai_flags = AI_ADDRCONFIG;
+#endif
     hints.ai_family = PF_UNSPEC;
     hints.ai_socktype = SOCK_STREAM;
 
index 2fc3fb7d57089a320b89eb6c49b675a08358ebc5..1d6727fa22e5859fe25891a9398830378d9f4e5f 100644 (file)
@@ -151,7 +151,9 @@ ftp_trans (char *host, char *user, char *password, char *cwd, char *remote,
        struct addrinfo hints, *res;
 
        memset(&hints, 0, sizeof(hints));
+#ifdef AI_ADDRCONFIG
        hints.ai_flags = AI_ADDRCONFIG;
+#endif
        hints.ai_family = PF_INET;
        hints.ai_socktype = SOCK_STREAM;
 
index a3ef6ba6762d17d4419e7ee4c10297123e066451..a386771ba224f7b06b66c3c8658360e1fbbc1ef9 100644 (file)
@@ -1544,7 +1544,9 @@ bad_faceproc: ;
        }
 
        memset(&hints, 0, sizeof(hints));
+#ifdef AI_ADDRCONFIG
        hints.ai_flags = AI_ADDRCONFIG;
+#endif
        hints.ai_family = PF_UNSPEC;
        hints.ai_socktype = SOCK_DGRAM;