diff options
author | Patrick McHardy <kaber@trash.net> | 2007-01-11 08:23:17 +0000 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2007-01-11 08:23:17 +0000 |
commit | 8a0b6ead35931422fbe02c63d9262ad9e40daacc (patch) | |
tree | 0f6161d3e9148c30125b631a6e852d38ba41ba92 | |
parent | b1f568309a09e61f892dee3c23279cecff0b0ff4 (diff) |
Fix missing space in ruleset listing
-rw-r--r-- | extensions/libipt_string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/libipt_string.c b/extensions/libipt_string.c index 5492cfc5..266b3e53 100644 --- a/extensions/libipt_string.c +++ b/extensions/libipt_string.c @@ -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); } |