Remove RCS keywords, since they no longer work after git migration.
[mmh] / uip / ftpsbr.c
index 2fc3fb7..57f25ba 100644 (file)
@@ -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.
@@ -151,7 +149,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;