X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/7b98850d3b8b2453b473fdfb6db52f4aa3fe39b6..ec8527028003cd9bd8170b5aa3f8ba63020487d3:/uip/ftpsbr.c diff --git a/uip/ftpsbr.c b/uip/ftpsbr.c index 2fc3fb7d..b2c3c421 100644 --- a/uip/ftpsbr.c +++ b/uip/ftpsbr.c @@ -1,8 +1,6 @@ /* * ftpsbr.c -- simple FTP client library * - * $Id$ - * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. @@ -11,7 +9,11 @@ #include #include -#ifdef HAVE_ARPA_FTP_H +#ifdef notdef_lyndon_posix +/* + * Does this get included indirectly? Let's find out. It's not + * part of Posix. Mail lyndon@orthanc.ca if this breaks your build. + */ # include #endif @@ -151,7 +153,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;