summaryrefslogtreecommitdiff
path: root/usr.sbin/ospf6d/ospf6d.c
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2007-10-11 21:25:38 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2007-10-11 21:25:38 +0000
commit7a460f83f4eea2ac39b9bd813836ca90ddd83292 (patch)
tree7e7a8b23f1f3a0672abd70fc4e39dfb36912f195 /usr.sbin/ospf6d/ospf6d.c
parent0fe6f9a2de87ce9cac2261539c5e0262fa4f6a26 (diff)
No need to store the interface mask. An interface represents a link and is
only addressed via its link local address. All networks on top of it are handled separately via type 8 Link-LSA.
Diffstat (limited to 'usr.sbin/ospf6d/ospf6d.c')
-rw-r--r--usr.sbin/ospf6d/ospf6d.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/ospf6d/ospf6d.c b/usr.sbin/ospf6d/ospf6d.c
index 86d5cc1fd18..fd128cbe3af 100644
--- a/usr.sbin/ospf6d/ospf6d.c
+++ b/usr.sbin/ospf6d/ospf6d.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ospf6d.c,v 1.2 2007/10/11 19:02:47 claudio Exp $ */
+/* $OpenBSD: ospf6d.c,v 1.3 2007/10/11 21:25:37 claudio Exp $ */
/*
* Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org>
@@ -781,7 +781,6 @@ merge_interfaces(struct area *a, struct area *xa)
ospfd_process, inet_ntoa(a->id), i->name);
i->addr = xi->addr;
i->dst = xi->dst;
- i->mask = xi->mask;
i->abr_id = xi->abr_id;
i->baudrate = xi->baudrate;
i->dead_interval = xi->dead_interval;