mirror of
https://github.com/bgp/bgpq4
synced 2025-02-28 08:53:11 +00:00
Bug preventing as4.0 to expand fixed.
This commit is contained in:
4
CHANGES
4
CHANGES
@@ -1,3 +1,7 @@
|
||||
0.1.12 (2010-10-08)
|
||||
- Fixed bug preventing AS262144 (that's AS4.0 in asdot) to expand.
|
||||
Thanks to Sergey Matveychuk
|
||||
|
||||
0.1.11 (2010-04-19)
|
||||
- Fixed another bug in aggregation (-A) mode, thanks to Dmitry Tejblum.
|
||||
|
||||
|
||||
@@ -118,7 +118,7 @@ bgpq_expander_add_as(struct bgpq_expander* b, char* as)
|
||||
*eoa, as);
|
||||
return 0;
|
||||
};
|
||||
if(asn1<1 || asn1>65535) {
|
||||
if(asn1>65535) {
|
||||
sx_report(SX_ERROR,"Invalid AS number in %s\n", as);
|
||||
return 0;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user