]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
Fix missing space in ruleset listing
authorPatrick McHardy <kaber@trash.net>
Thu, 11 Jan 2007 08:23:17 +0000 (08:23 +0000)
committerPatrick McHardy <kaber@trash.net>
Thu, 11 Jan 2007 08:23:17 +0000 (08:23 +0000)
extensions/libipt_string.c

index 5492cfc54900d8dff21526a8ea21bbdb3173657d..266b3e53dce5fe65c0affbe6058523f6ae06f070 100644 (file)
@@ -307,7 +307,7 @@ print(const struct ipt_ip *ip,
        if (info->from_offset != 0)
                printf("FROM %u ", info->from_offset);
        if (info->to_offset != 0)
-               printf("TO %u", info->to_offset);
+               printf("TO %u ", info->to_offset);
 }