iptables: do not print trailing whitespaces

Due to the use of printf("foobar "), iptables emits spaces at the
end-of-line, which looks odd to some users because it causes the
terminal to wrap even if there is seemingly nothing to print.

It may also have other points of annoyance, such as mailers
interpreting a trailing space as an indicator that the paragraph
continues when format=flowed is also on.
And git highlights trailing spaces in red, so let's avoid :)

Preexisting inconsistencies in outputting spaces in the right
spot are also addressed right away.

References: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=429579
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
diff --git a/extensions/libxt_quota.c b/extensions/libxt_quota.c
index 75da2d6..e6ed9bc 100644
--- a/extensions/libxt_quota.c
+++ b/extensions/libxt_quota.c
@@ -27,7 +27,7 @@
 quota_print(const void *ip, const struct xt_entry_match *match, int numeric)
 {
 	const struct xt_quota_info *q = (const void *)match->data;
-	printf("quota: %llu bytes", (unsigned long long) q->quota);
+	printf(" quota: %llu bytes", (unsigned long long)q->quota);
 }
 
 static void
@@ -37,7 +37,7 @@
 
 	if (q->flags & XT_QUOTA_INVERT)
 		printf("! ");
-	printf("--quota %llu ", (unsigned long long) q->quota);
+	printf(" --quota %llu", (unsigned long long) q->quota);
 }
 
 /* parse quota option */