Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.sbin/ifmcstat follow RFC2553 (sync with recent KAME):
details: https://anonhg.NetBSD.org/src/rev/9f8bb62320f2
branches: trunk
changeset: 476007:9f8bb62320f2
user: itojun <itojun%NetBSD.org@localhost>
date: Fri Sep 03 04:31:48 1999 +0000
description:
follow RFC2553 (sync with recent KAME):
s/IN6_IS_ADDR_ANY/IN6_IS_ADDR_UNSPECIFIED/
diffstat:
usr.sbin/ifmcstat/ifmcstat.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 68a7f779d3bb -r 9f8bb62320f2 usr.sbin/ifmcstat/ifmcstat.c
--- a/usr.sbin/ifmcstat/ifmcstat.c Fri Sep 03 04:29:57 1999 +0000
+++ b/usr.sbin/ifmcstat/ifmcstat.c Fri Sep 03 04:31:48 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ifmcstat.c,v 1.3 1999/07/07 00:28:29 itojun Exp $ */
+/* $NetBSD: ifmcstat.c,v 1.4 1999/09/03 04:31:48 itojun Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -93,7 +93,7 @@
{
static char buf[BUFSIZ];
- if (IN6_IS_ADDR_ANY(p))
+ if (IN6_IS_ADDR_UNSPECIFIED(p))
return "*";
return inet_ntop(AF_INET6, (void *)p, buf, sizeof(buf));
}
Home |
Main Index |
Thread Index |
Old Index