]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
xshared: Fix for missing space after 'prot' column
authorPhil Sutter <phil@nwl.cc>
Wed, 27 Jul 2022 12:14:23 +0000 (14:14 +0200)
committerPhil Sutter <phil@nwl.cc>
Fri, 29 Jul 2022 09:53:54 +0000 (11:53 +0200)
Format string ensured a minimum field width of five characters, but
allowed for longer strings to eat the column delimiting white space.

Signed-off-by: Phil Sutter <phil@nwl.cc>
iptables/tests/shell/testcases/ip6tables/0002-verbose-output_0
iptables/xshared.c

index 4e754156ba5897346a0b35c06af4bbd3a73d3e44..dad01a982a91506efc173d0a1f697663bece91b5 100755 (executable)
@@ -35,7 +35,7 @@ Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
  pkts bytes target     prot opt in     out     source               destination
     0     0 ACCEPT     all  --  eth2   eth3    feed:babe::1         feed:babe::2
     0     0 ACCEPT     all  --  eth2   eth3    feed:babe::4         feed:babe::5
-    0     0            ipv6-icmp--  *      *       ::/0                 ::/0                 ipv6-icmptype 1 code 0
+    0     0            ipv6-icmp --  *      *       ::/0                 ::/0                 ipv6-icmptype 1 code 0
     0     0            all  --  *      *       ::/0                 ::/0                 dst length:42  rt type:23
     0     0 LOG        all  --  *      *       ::/0                 ::/0                 frag id:1337 LOG flags 0 level 4
 
index b1088c8234426b25f14680bd4d0ae82c4dc40d4d..ccec4ff1bceef745cf6ebe7886b175d3da252d94 100644 (file)
@@ -1093,9 +1093,9 @@ void print_rule_details(unsigned int linenum, const struct xt_counters *ctrs,
        fputc(invflags & XT_INV_PROTO ? '!' : ' ', stdout);
 
        if (pname)
-               printf(FMT("%-5s", "%s "), pname);
+               printf(FMT("%-4s ", "%s "), pname);
        else
-               printf(FMT("%-5hu", "%hu "), proto);
+               printf(FMT("%-4hu ", "%hu "), proto);
 }
 
 void save_rule_details(const char *iniface, unsigned const char *iniface_mask,