The branch stable/11 has been updated by avatar: URL: https://cgit.FreeBSD.org/src/commit/?id=5e4388126aac3c3065a8c64518130eeba856409d
commit 5e4388126aac3c3065a8c64518130eeba856409d Author: Tai-hwa Liang <[email protected]> AuthorDate: 2021-04-12 06:27:03 +0000 Commit: Tai-hwa Liang <[email protected]> CommitDate: 2021-05-17 09:23:00 +0000 arp(8): fixing the deletion failure of IEEE1394 associated addresses Without this, 'arp -d ${IEEE1394_ADDRESS}' gives the following error: arp: delete: cannot locate 10.0.0.71 Reviewed by: glebius MFC after: 2 weeks (cherry picked from commit a0d6d0d0b9aba6d4c025b2f2807e7c4b4c4b2415) --- usr.sbin/arp/arp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.sbin/arp/arp.c b/usr.sbin/arp/arp.c index 4ef0258c5a33..aaf747e49b14 100644 --- a/usr.sbin/arp/arp.c +++ b/usr.sbin/arp/arp.c @@ -298,6 +298,7 @@ valid_type(int type) switch (type) { case IFT_ETHER: case IFT_FDDI: + case IFT_IEEE1394: case IFT_INFINIBAND: case IFT_ISO88023: case IFT_ISO88024: _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
