summaryrefslogtreecommitdiffstats
path: root/usr.sbin/dhcpd/parse.c
diff options
context:
space:
mode:
authorkrw <krw@openbsd.org>2013-12-05 22:31:35 +0000
committerkrw <krw@openbsd.org>2013-12-05 22:31:35 +0000
commitf34ac0d4c27c8345908292e3ba0246060086d9a6 (patch)
treec90b86662132fe53d863be101555acf1fff033f8 /usr.sbin/dhcpd/parse.c
parentsync (diff)
downloadwireguard-openbsd-f34ac0d4c27c8345908292e3ba0246060086d9a6.tar.xz
wireguard-openbsd-f34ac0d4c27c8345908292e3ba0246060086d9a6.zip
Stop pretending we still support FDDI or token ring hardware types.
idea ok deraadt@ matthew@
Diffstat (limited to 'usr.sbin/dhcpd/parse.c')
-rw-r--r--usr.sbin/dhcpd/parse.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/usr.sbin/dhcpd/parse.c b/usr.sbin/dhcpd/parse.c
index 6642df5beff..57f980d813c 100644
--- a/usr.sbin/dhcpd/parse.c
+++ b/usr.sbin/dhcpd/parse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.c,v 1.15 2013/11/22 04:47:40 deraadt Exp $ */
+/* $OpenBSD: parse.c,v 1.16 2013/12/05 22:31:35 krw Exp $ */
/* Common parser code for dhcpd and dhclient. */
@@ -205,11 +205,6 @@ parse_hardware_param(FILE *cfile, struct hardware *hardware)
case TOK_ETHERNET:
hardware->htype = HTYPE_ETHER;
break;
- case TOK_TOKEN_RING:
- hardware->htype = HTYPE_IEEE802;
- break;
- case TOK_FDDI:
- hardware->htype = HTYPE_FDDI;
break;
case TOK_IPSEC_TUNNEL:
hardware->htype = HTYPE_IPSEC_TUNNEL;