diff options
author | Tai-hwa Liang <avatar@FreeBSD.org> | 2021-04-12 06:27:03 +0000 |
---|---|---|
committer | Tai-hwa Liang <avatar@FreeBSD.org> | 2021-05-17 10:29:37 +0000 |
commit | 28cce1d5b5f5636459f6fa4b99d32139af8ecd2b (patch) | |
tree | 5497f890e2a132681306365e264f89b43b249925 | |
parent | 34033bc5b9fa8eaf3b12759227bf6f82328e5f00 (diff) | |
download | src-28cce1d5b5f5636459f6fa4b99d32139af8ecd2b.tar.gz src-28cce1d5b5f5636459f6fa4b99d32139af8ecd2b.zip |
arp(8): fixing the deletion failure of IEEE1394 associated addressesstable/10
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)
-rw-r--r-- | usr.sbin/arp/arp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.sbin/arp/arp.c b/usr.sbin/arp/arp.c index 2d2fe893c0d7..58b16c698d07 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_INFINIBAND: case IFT_ISO88023: case IFT_ISO88024: |