Date: Wed, 14 Sep 2022 13:24:26 GMT From: Tai-hwa Liang <avatar@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 2b3ce27cae4c - stable/8 - arp(8): fixing the deletion failure of IEEE1394 associated addresses Message-ID: <202209141324.28EDOQ2w025158@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/8 has been updated by avatar: URL: https://cgit.FreeBSD.org/src/commit/?id=2b3ce27cae4c75258a0c32a9c8a0db3d0639882d commit 2b3ce27cae4c75258a0c32a9c8a0db3d0639882d Author: Tai-hwa Liang <avatar@FreeBSD.org> AuthorDate: 2021-04-12 06:27:03 +0000 Commit: Tai-hwa Liang <avatar@FreeBSD.org> CommitDate: 2022-09-14 13:10:15 +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 (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 2ee9d67e6827..8b124ca7c5ac 100644 --- a/usr.sbin/arp/arp.c +++ b/usr.sbin/arp/arp.c @@ -281,6 +281,7 @@ valid_type(int type) switch (type) { case IFT_ETHER: case IFT_FDDI: + case IFT_IEEE1394: case IFT_ISO88023: case IFT_ISO88024: case IFT_ISO88025:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202209141324.28EDOQ2w025158>