From: Tom Eastep Date: Sat, 3 Sep 2011 00:45:51 +0000 (-0700) Subject: libxt_CONNSECMARK: fix spacing in output X-Git-Tag: v1.4.12.2~14^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=153c23d9b14285b24aae3e96da0b547dcc7ee051;p=thirdparty%2Fiptables.git libxt_CONNSECMARK: fix spacing in output ~# iptables -t mangle -A foo -j CONNSECMARK --save ~# iptables -t mangle -S [...] -A foo -j CONNSECMARK--save Signed-off-by: Jan Engelhardt --- diff --git a/extensions/libxt_CONNSECMARK.c b/extensions/libxt_CONNSECMARK.c index df2e6b82..0b3cd79d 100644 --- a/extensions/libxt_CONNSECMARK.c +++ b/extensions/libxt_CONNSECMARK.c @@ -87,7 +87,7 @@ CONNSECMARK_save(const void *ip, const struct xt_entry_target *target) const struct xt_connsecmark_target_info *info = (struct xt_connsecmark_target_info*)target->data; - printf("--"); + printf(" --"); print_connsecmark(info); }