Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/usr.bin/ftp/util.c,v rcsdiff: /ftp/cvs/cvsroot/src/usr.bin/ftp/util.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.147 retrieving revision 1.148 diff -u -p -r1.147 -r1.148 --- src/usr.bin/ftp/util.c 2008/05/10 00:05:31 1.147 +++ src/usr.bin/ftp/util.c 2008/08/13 04:59:13 1.148 @@ -1,4 +1,4 @@ -/* $NetBSD: util.c,v 1.147 2008/05/10 00:05:31 skd Exp $ */ +/* $NetBSD: util.c,v 1.148 2008/08/13 04:59:13 lukem Exp $ */ /*- * Copyright (c) 1997-2008 The NetBSD Foundation, Inc. @@ -64,7 +64,7 @@ #include #ifndef lint -__RCSID("$NetBSD: util.c,v 1.147 2008/05/10 00:05:31 skd Exp $"); +__RCSID("$NetBSD: util.c,v 1.148 2008/08/13 04:59:13 lukem Exp $"); #endif /* not lint */ /* @@ -1215,7 +1215,7 @@ isipv6addr(const char *addr) struct addrinfo hints, *res; memset(&hints, 0, sizeof(hints)); - hints.ai_family = PF_INET6; + hints.ai_family = AF_INET6; hints.ai_socktype = SOCK_DGRAM; /*dummy*/ hints.ai_flags = AI_NUMERICHOST; if (getaddrinfo(addr, "0", &hints, &res) != 0)