summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2009-03-24 12:13:53 +0100
committerJan Engelhardt <jengelh@medozas.de>2009-03-24 12:13:53 +0100
commitbf02bd290c03fd47b256258e06157f4d9d76e46d (patch)
treea4c0a066851cf7dbf33e2630769ec94a0e93ecaa
parent854d2d9bd7556cfd8a676b0bc18dc059a9a2dd25 (diff)
libxt_hashlimit: add missing space for iptables-save output
Reference: http://bugzilla.netfilter.org/show_bug.cgi?id=568 Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
-rw-r--r--extensions/libxt_hashlimit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/libxt_hashlimit.c b/extensions/libxt_hashlimit.c
index 5377b6d8..9a7e5ded 100644
--- a/extensions/libxt_hashlimit.c
+++ b/extensions/libxt_hashlimit.c
@@ -636,7 +636,7 @@ hashlimit_mt_save(const struct xt_hashlimit_mtinfo1 *info, unsigned int dmask)
if (info->cfg.max != 0)
printf("--hashlimit-htable-max %u ", info->cfg.max);
if (info->cfg.gc_interval != XT_HASHLIMIT_GCINTERVAL)
- printf("--hashlimit-htable-gcinterval %u", info->cfg.gc_interval);
+ printf("--hashlimit-htable-gcinterval %u ", info->cfg.gc_interval);
if (info->cfg.expire != XT_HASHLIMIT_EXPIRE)
printf("--hashlimit-htable-expire %u ", info->cfg.expire);