summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2010-12-17 11:52:30 +0100
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2010-12-17 11:52:30 +0100
commit5c269cc6982f664153bd73af93c41312b862e15d (patch)
tree4eee21e20f1bc225ffe0e478c76f645d42ccd6f1
parentff0e8fef74b1307d3c5ae8a0f5dd291c72dd40ad (diff)
Missing spaces in error strings fixed.
-rw-r--r--src/ipset.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ipset.c b/src/ipset.c
index 4366b8e..e4a82e7 100644
--- a/src/ipset.c
+++ b/src/ipset.c
@@ -358,19 +358,19 @@ check_allowed(const struct ipset_type *type, enum ipset_cmd cmd)
switch (i) {
case IPSET_OPT_CIDR:
exit_error(OTHER_PROBLEM,
- "IP/CIDR range is not allowed in command %s"
+ "IP/CIDR range is not allowed in command %s "
"with set type %s and family %s",
cmd2name(cmd), type->name, session_family());
return;
case IPSET_OPT_IP_TO:
exit_error(OTHER_PROBLEM,
- "FROM-TO IP range is not allowed in command %s"
+ "FROM-TO IP range is not allowed in command %s "
"with set type %s and family %s",
cmd2name(cmd), type->name, session_family());
return;
case IPSET_OPT_PORT_TO:
exit_error(OTHER_PROBLEM,
- "FROM-TO port range is not allowed in command %s"
+ "FROM-TO port range is not allowed in command %s "
"with set type %s and family %s",
cmd2name(cmd), type->name, session_family());
return;
@@ -389,7 +389,7 @@ check_allowed(const struct ipset_type *type, enum ipset_cmd cmd)
if (arg->opt != i)
continue;
exit_error(OTHER_PROBLEM,
- "%s parameter is not allowed in command %s"
+ "%s parameter is not allowed in command %s "
"with set type %s and family %s",
arg->name[0],
cmd2name(cmd), type->name, session_family());