summaryrefslogtreecommitdiff
path: root/zebra
diff options
context:
space:
mode:
authorDenis Ovsienko <infrastation@yandex.ru>2009-12-08 13:15:12 +0300
committerDenis Ovsienko <infrastation@yandex.ru>2009-12-08 13:15:12 +0300
commit0342b76cfbfde2b6f45c4614e674d53987b1e9fa (patch)
treef126f00d400a7cac5dcbf0a0c948b855b03d5781 /zebra
parentd02c56cdf0c2e01a986417ed973dd7a2a5368ac1 (diff)
parentffac19c58ee636274cd3972b584e37cd9a3331de (diff)
Merge branch 'master' of ssh://code.quagga.net/var/lib/git/quagga
Diffstat (limited to 'zebra')
-rw-r--r--zebra/interface.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/zebra/interface.c b/zebra/interface.c
index 9dfb6d50..ba4cf25f 100644
--- a/zebra/interface.c
+++ b/zebra/interface.c
@@ -830,19 +830,6 @@ if_dump_vty (struct vty *vty, struct interface *ifp)
#endif /* HAVE_NET_RT_IFLIST */
}
-/* Check supported address family. */
-static int
-if_supported_family (int family)
-{
- if (family == AF_INET)
- return 1;
-#ifdef HAVE_IPV6
- if (family == AF_INET6)
- return 1;
-#endif /* HAVE_IPV6 */
- return 0;
-}
-
/* Wrapper hook point for zebra daemon so that ifindex can be set
* DEFUN macro not used as extract.pl HAS to ignore this
* See also interface_cmd in lib/if.c