summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authorbms <bms@FreeBSD.org>2009-02-15 12:10:05 +0000
committerbms <bms@FreeBSD.org>2009-02-15 12:10:05 +0000
commit4ed35034a25003a6c3528764c5c739d6ceb8cdd0 (patch)
tree8c14db78c6451f7cb23e8a741d48cd3eec481be9 /usr.sbin
parentebc49b4f33fdb922256e2b32a732df102b8d0bd2 (diff)
downloadFreeBSD-src-4ed35034a25003a6c3528764c5c739d6ceb8cdd0.zip
FreeBSD-src-4ed35034a25003a6c3528764c5c739d6ceb8cdd0.tar.gz
Fix a typo which caused ifmcstat's sysctl path
to print the network-layer endpoint address of the group membership, rather than its link-layer mapping as intended. The KVM path is not affected. MFC after: 1 week
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/ifmcstat/ifmcstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/ifmcstat/ifmcstat.c b/usr.sbin/ifmcstat/ifmcstat.c
index 9fe8b15..0a2eb7e 100644
--- a/usr.sbin/ifmcstat/ifmcstat.c
+++ b/usr.sbin/ifmcstat/ifmcstat.c
@@ -768,7 +768,7 @@ ifmcstat_getifmaddrs(void)
/* Link-layer mapping, if present. */
pllsa = (sockunion_t *)ifma->ifma_lladdr;
if (pllsa != NULL) {
- error = getnameinfo(&pifasa->sa, pifasa->sa.sa_len,
+ error = getnameinfo(&pllsa->sa, pllsa->sa.sa_len,
addrbuf, sizeof(addrbuf), NULL, 0, NI_NUMERICHOST);
fprintf(stdout, "\t\t\tmcast-macaddr %s\n", addrbuf);
}
OpenPOWER on IntegriCloud