From fdf16eb65872b3bee02fb9e25c80ea32cf59f8e9 Mon Sep 17 00:00:00 2001 From: Ondrej Zajicek Date: Sun, 3 Jul 2011 19:43:30 +0200 Subject: Prints full community lists during 'show route all'. --- filter/filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'filter') diff --git a/filter/filter.c b/filter/filter.c index 913bd08..0f44a6e 100644 --- a/filter/filter.c +++ b/filter/filter.c @@ -401,7 +401,7 @@ val_print(struct f_val v) case T_SET: tree_print(v.val.t); return; case T_ENUM: logn("(enum %x)%d", v.type, v.val.i); return; case T_PATH: as_path_format(v.val.ad, buf2, 1000); logn("(path %s)", buf2); return; - case T_CLIST: int_set_format(v.val.ad, 1, buf2, 1000); logn("(clist %s)", buf2); return; + case T_CLIST: int_set_format(v.val.ad, 1, -1, buf2, 1000); logn("(clist %s)", buf2); return; case T_PATH_MASK: pm_format(v.val.path_mask, buf2, 1000); logn("(pathmask%s)", buf2); return; default: logn( "[unknown type %x]", v.type ); return; } -- cgit v1.2.3