diff options
-rw-r--r-- | usr.sbin/dvmrpctl/dvmrpctl.c | 5 | ||||
-rw-r--r-- | usr.sbin/ospfctl/ospfctl.c | 7 |
2 files changed, 2 insertions, 10 deletions
diff --git a/usr.sbin/dvmrpctl/dvmrpctl.c b/usr.sbin/dvmrpctl/dvmrpctl.c index 1940e9d55ef..415a0f080b5 100644 --- a/usr.sbin/dvmrpctl/dvmrpctl.c +++ b/usr.sbin/dvmrpctl/dvmrpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dvmrpctl.c,v 1.2 2006/11/28 19:21:15 reyk Exp $ */ +/* $OpenBSD: dvmrpctl.c,v 1.3 2007/05/30 02:21:08 henning Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -258,9 +258,6 @@ get_ifms_type(int mediatype) case IFT_FDDI: return (IFM_FDDI); break; - case IFT_ISO88025: - return (IFM_TOKEN); - break; case IFT_CARP: return (IFM_CARP); break; diff --git a/usr.sbin/ospfctl/ospfctl.c b/usr.sbin/ospfctl/ospfctl.c index f8bfaaf3b2e..0b89d293bbe 100644 --- a/usr.sbin/ospfctl/ospfctl.c +++ b/usr.sbin/ospfctl/ospfctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfctl.c,v 1.36 2006/11/28 19:21:15 reyk Exp $ */ +/* $OpenBSD: ospfctl.c,v 1.37 2007/05/30 02:21:08 henning Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -338,8 +338,6 @@ get_ifms_type(int mediatype) return (IFM_ETHER); case IFT_FDDI: return (IFM_FDDI); - case IFT_ISO88025: - return (IFM_TOKEN); case IFT_CARP: return (IFM_CARP); case IFT_PPP: @@ -1237,9 +1235,6 @@ show_fib_interface_msg(struct imsg *imsg) case IFT_FDDI: ifms_type = IFM_FDDI; break; - case IFT_ISO88025: - ifms_type = IFM_TOKEN; - break; case IFT_CARP: ifms_type = IFM_CARP; break; |