diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ChangeLog | 4 | ||||
-rw-r--r-- | tests/aspath_test.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog index 850fd54d..32c95709 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,7 @@ +2006-12-01 Juergen Kammer <j.kammer@eurodata.de> + + * aspath_test.c: Support asn32 changes, call aspath_parse with 16 bit. + 2006-08-26 Paul Jakma <paul.jakma@sun.com> * heavy-wq.c: (slow_func_del,slow_func) update to match workqueue diff --git a/tests/aspath_test.c b/tests/aspath_test.c index 1d28dbed..bf0262c2 100644 --- a/tests/aspath_test.c +++ b/tests/aspath_test.c @@ -508,7 +508,7 @@ make_aspath (const u_char *data, size_t len) s = stream_new (len); stream_put (s, data, len); } - as = aspath_parse (s, len); + as = aspath_parse (s, len, 0); /* jk: these are 16bit aspaths! */ if (s) stream_free (s); |