From 178c2055e7ab6be3f7fd5fd89c2698e1f8b038da Mon Sep 17 00:00:00 2001 From: Tomasz Bursztyka Date: Thu, 10 Nov 2011 11:02:22 +0200 Subject: tools: Initiate defined table before working on it in iptables-test --- tools/iptables-test.c | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/tools/iptables-test.c b/tools/iptables-test.c index 3bbe43b3..b3f1ce16 100644 --- a/tools/iptables-test.c +++ b/tools/iptables-test.c @@ -1561,6 +1561,11 @@ int main(int argc, char *argv[]) case 't': table_name = optarg; + + table = connman_iptables_init(table_name); + if (table == NULL) + return -1; + break; case 1: @@ -1653,12 +1658,13 @@ int main(int argc, char *argv[]) xt_t->final_check(xt_t->tflags); #endif - if (table_name == NULL) + if (table == NULL) { table_name = "filter"; - table = connman_iptables_init(table_name); - if (table == NULL) - return -1; + table = connman_iptables_init(table_name); + if (table == NULL) + return -1; + } if (delete) { if (delete_chain == NULL) -- cgit v1.2.3