From: Maciej Zenczykowski Date: Mon, 4 Apr 2011 13:36:14 +0000 (+0200) Subject: v4: rename delete_chain() to delete_chain4() X-Git-Tag: v1.4.11~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5c061afabf018634a507f00df5b1d0c4bd53a37;p=thirdparty%2Fiptables.git v4: rename delete_chain() to delete_chain4() Signed-off-by: Maciej Zenczykowski Signed-off-by: Patrick McHardy --- diff --git a/include/iptables.h b/include/iptables.h index a2ed9d6d..4e9ae197 100644 --- a/include/iptables.h +++ b/include/iptables.h @@ -9,7 +9,7 @@ /* Your shared library should call one of these. */ extern int do_command(int argc, char *argv[], char **table, struct iptc_handle **handle); -extern int delete_chain(const ipt_chainlabel chain, int verbose, +extern int delete_chain4(const ipt_chainlabel chain, int verbose, struct iptc_handle *handle); extern int flush_entries4(const ipt_chainlabel chain, int verbose, struct iptc_handle *handle); diff --git a/iptables-restore.c b/iptables-restore.c index 1bdce8a8..6163a925 100644 --- a/iptables-restore.c +++ b/iptables-restore.c @@ -238,7 +238,7 @@ main(int argc, char *argv[]) DEBUGP("Deleting all user-defined chains " "of table '%s'\n", table); - for_each_chain4(delete_chain, verbose, 0, + for_each_chain4(delete_chain4, verbose, 0, handle); } diff --git a/iptables.c b/iptables.c index 3987b672..5af832e5 100644 --- a/iptables.c +++ b/iptables.c @@ -922,11 +922,11 @@ zero_entries(const ipt_chainlabel chain, int verbose, } int -delete_chain(const ipt_chainlabel chain, int verbose, +delete_chain4(const ipt_chainlabel chain, int verbose, struct iptc_handle *handle) { if (!chain) - return for_each_chain4(delete_chain, verbose, 0, handle); + return for_each_chain4(delete_chain4, verbose, 0, handle); if (verbose) fprintf(stdout, "Deleting chain `%s'\n", chain); @@ -2016,7 +2016,7 @@ int do_command(int argc, char *argv[], char **table, struct iptc_handle **handle ret = iptc_create_chain(chain, *handle); break; case CMD_DELETE_CHAIN: - ret = delete_chain(chain, cs.options&OPT_VERBOSE, *handle); + ret = delete_chain4(chain, cs.options&OPT_VERBOSE, *handle); break; case CMD_RENAME_CHAIN: ret = iptc_rename_chain(chain, newname, *handle);