diff options
Diffstat (limited to 'toys')
-rw-r--r-- | toys/net/ftpget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/net/ftpget.c b/toys/net/ftpget.c index 3c63905e..f41e05b9 100644 --- a/toys/net/ftpget.c +++ b/toys/net/ftpget.c @@ -107,7 +107,7 @@ void ftpget_main(void) if (!remote) remote = toys.optargs[1]; // connect - TT.fd = xconnect(xgetaddrifo(*toys.optargs, TT.port, 0, SOCK_STREAM, 0, + TT.fd = xconnect(xgetaddrinfo(*toys.optargs, TT.port, 0, SOCK_STREAM, 0, AI_ADDRCONFIG)); if (getpeername(TT.fd, (void *)&si6, &sl)) perror_exit("getpeername"); |