From 6f0fd61255c42fff41f6a21a75a5fc35de5597d1 Mon Sep 17 00:00:00 2001 From: Theo Baschak Date: Fri, 1 Jan 2016 23:59:28 -0600 Subject: [PATCH] Update asn.c - 32bit asn widths Now that 32-bit ASNs are becoming more common the output of -z should take their width into consideration. --- asn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asn.c b/asn.c index 33622ca..628f504 100644 --- a/asn.c +++ b/asn.c @@ -60,7 +60,7 @@ char fmtinfo[32]; extern int af; /* address family of remote target */ // items width: ASN, Route, Country, Registry, Allocated -int iiwidth[] = { 6, 19, 4, 8, 11}; // item len + space +int iiwidth[] = { 7, 19, 4, 8, 11}; // item len + space int iiwidth_len = sizeof(iiwidth)/sizeof((iiwidth)[0]); typedef char* items_t[ITEMSMAX + 1]; -- 2.47.2