save-restore syntax uses *table, not -t table. Signed-off-by: Jan Engelhardt <jengelh@xxxxxxx> --- iptables/ip6tables-restore.c | 3 +-- iptables/iptables-restore.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/iptables/ip6tables-restore.c b/iptables/ip6tables-restore.c index 3894d68..614ff0f 100644 --- a/iptables/ip6tables-restore.c +++ b/iptables/ip6tables-restore.c @@ -417,8 +417,7 @@ int ip6tables_restore_main(int argc, char *argv[]) if (!strncmp(param_buffer, "-t", 2) || !strncmp(param_buffer, "--table", 8)) { xtables_error(PARAMETER_PROBLEM, - "Line %u seems to have a " - "-t table option.\n", line); + "The -t option (seen in line %u) cannot be used in ip6tables-restore.\n", line); exit(1); } diff --git a/iptables/iptables-restore.c b/iptables/iptables-restore.c index 034f960..294e4b8 100644 --- a/iptables/iptables-restore.c +++ b/iptables/iptables-restore.c @@ -417,8 +417,7 @@ iptables_restore_main(int argc, char *argv[]) if (!strncmp(param_buffer, "-t", 2) || !strncmp(param_buffer, "--table", 8)) { xtables_error(PARAMETER_PROBLEM, - "Line %u seems to have a " - "-t table option.\n", line); + "The -t option (seen in line %u) cannot be used in iptables-restore.\n", line); exit(1); } -- 1.7.7 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html