diff options
| author | Paul Jakma <paul.jakma@sun.com> | 2006-05-04 07:52:12 +0000 | 
|---|---|---|
| committer | Paul Jakma <paul.jakma@sun.com> | 2006-05-04 07:52:12 +0000 | 
| commit | a3b6ea56a0add7d0972a66d96e1fbcf5461eecdb (patch) | |
| tree | a7bb8a005ab41ce30c43dd0fc2fab487c0e5f613 /bgpd/bgp_attr.c | |
| parent | 5f03f141eced8bad4971fcc6ec7d7a538c227d8c (diff) | |
[bgpd] bug #210: Enable crucial VPNv4 code which was disabled
2006-05-04 Paul Jakma <paul.jakma@sun.com>
	* (general) VPNv4 fixes. Certain VPNv4 code was not enabled.
	  See bug #210.
	* bgp_attr.{c,h}: (bgp_packet_{withdraw,attribute}) Tag should be
	  u_char really.
	* bgp_packet.c: (bgp_{update,withdraw}_packet) Enable some
	  VPNv4 code which inexplicably was ifdef'd out. comments from
	  a tester on IRC suggest this fixes bug #210.
Diffstat (limited to 'bgpd/bgp_attr.c')
| -rw-r--r-- | bgpd/bgp_attr.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_attr.c b/bgpd/bgp_attr.c index 27ddab11..e9dde0fd 100644 --- a/bgpd/bgp_attr.c +++ b/bgpd/bgp_attr.c @@ -1350,7 +1350,7 @@ bgp_size_t  bgp_packet_attribute (struct bgp *bgp, struct peer *peer,  		      struct stream *s, struct attr *attr, struct prefix *p,  		      afi_t afi, safi_t safi, struct peer *from, -		      struct prefix_rd *prd, char *tag) +		      struct prefix_rd *prd, u_char *tag)  {    size_t cp;    unsigned int aspath_data_size; @@ -1703,7 +1703,7 @@ bgp_packet_attribute (struct bgp *bgp, struct peer *peer,  bgp_size_t  bgp_packet_withdraw (struct peer *peer, struct stream *s, struct prefix *p,  		     afi_t afi, safi_t safi, struct prefix_rd *prd, -		     char *tag) +		     u_char *tag)  {    unsigned long cp;    unsigned long attrlen_pnt;  | 
