From: Daniel Wagner <daniel.wag...@bmw-carit.de> The second argument is not used anymore, let's remove it. The funciton name doesn't really match to its implementation, so it's also time to rename it. --- src/iptables.c | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-)
diff --git a/src/iptables.c b/src/iptables.c index b5dad1a..b1a48e8 100644 --- a/src/iptables.c +++ b/src/iptables.c @@ -1665,11 +1665,9 @@ out: return err; } -static struct connman_iptables *pre_load_table(const char *table_name, - struct connman_iptables *table) +static struct connman_iptables *get_table(const char *table_name) { - if (table != NULL) - return table; + struct connman_iptables *table; table = g_hash_table_lookup(table_hash, table_name); if (table != NULL) @@ -2038,7 +2036,7 @@ int __connman_iptables_new_chain(const char *table_name, DBG("-t %s -N %s", table_name, chain); - table = pre_load_table(table_name, NULL); + table = get_table(table_name); if (table == NULL) return -EINVAL; @@ -2052,7 +2050,7 @@ int __connman_iptables_delete_chain(const char *table_name, DBG("-t %s -X %s", table_name, chain); - table = pre_load_table(table_name, NULL); + table = get_table(table_name); if (table == NULL) return -EINVAL; @@ -2066,7 +2064,7 @@ int __connman_iptables_flush_chain(const char *table_name, DBG("-t %s -F %s", table_name, chain); - table = pre_load_table(table_name, NULL); + table = get_table(table_name); if (table == NULL) return -EINVAL; @@ -2081,7 +2079,7 @@ int __connman_iptables_change_policy(const char *table_name, DBG("-t %s -F %s", table_name, chain); - table = pre_load_table(table_name, NULL); + table = get_table(table_name); if (table == NULL) return -EINVAL; @@ -2107,7 +2105,7 @@ int __connman_iptables_append(const char *table_name, if (err < 0) goto out; - table = pre_load_table(table_name, NULL); + table = get_table(table_name); if (table == NULL) { err = -EINVAL; goto out; @@ -2150,7 +2148,7 @@ int __connman_iptables_delete(const char *table_name, if (err < 0) goto out; - table = pre_load_table(table_name, NULL); + table = get_table(table_name); if (table == NULL) { err = -EINVAL; goto out; @@ -2242,7 +2240,7 @@ void flush_table(const char *name) GSList *chains = NULL, *list; struct connman_iptables *table; - table = pre_load_table(name, NULL); + table = get_table(name); if (table == NULL) return; -- 1.8.1.3.566.gaa39828 _______________________________________________ connman mailing list connman@connman.net http://lists.connman.net/listinfo/connman