-/* $OpenBSD: dispatch.c,v 1.43 2017/04/12 19:17:30 krw Exp $ */
+/* $OpenBSD: dispatch.c,v 1.44 2021/11/20 11:47:02 kn Exp $ */
/*
* Copyright (c) 1995, 1996, 1997, 1998, 1999
for (ifa = ifap; ifa != NULL; ifa = ifa->ifa_next) {
/*
* See if this is the sort of interface we want to
- * deal with. Skip loopback, point-to-point and down
+ * deal with. Skip loopback and point-to-point
* interfaces, except don't skip down interfaces if we're
* trying to get a list of configurable interfaces.
*/
if ((ifa->ifa_flags & IFF_LOOPBACK) ||
(ifa->ifa_flags & IFF_POINTOPOINT) ||
- (!(ifa->ifa_flags & IFF_UP)) ||
(!(ifa->ifa_flags & IFF_BROADCAST)))
continue;