diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2009-03-29 18:59:23 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2009-03-29 18:59:23 +0000 |
commit | b3aceacfbc8062603edc99b43590b601ac979cd2 (patch) | |
tree | 4f52848b247c183dd0c78bfe9a7554deec34288f /usr.sbin | |
parent | 9fa2d0649fb58d89e7b46c62b3f4d6f3571f9d18 (diff) |
Remove att_rtr field from struct lsa_net.
In Network-LSAs, the only thing sitting between the LSA header
and the attached router list is the options field. We already
have lsa_net_link to represent elements of the attached router list,
so there's no need to have a single entry of this list in lsa_net.
ok claudio@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ospf6d/ospf6.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/ospf6d/ospf6.h b/usr.sbin/ospf6d/ospf6.h index 0987540f2d3..0e5f252a38b 100644 --- a/usr.sbin/ospf6d/ospf6.h +++ b/usr.sbin/ospf6d/ospf6.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ospf6.h,v 1.13 2008/12/30 22:29:54 claudio Exp $ */ +/* $OpenBSD: ospf6.h,v 1.14 2009/03/29 18:59:22 stsp Exp $ */ /* * Copyright (c) 2004, 2005, 2007 Esben Norby <norby@openbsd.org> @@ -228,7 +228,6 @@ struct lsa_rtr_link { struct lsa_net { u_int32_t opts; /* 24bits options */ - u_int32_t att_rtr[1]; }; struct lsa_net_link { |