From 7e4db2f50133007f549f222468bde4f3adcf41ac Mon Sep 17 00:00:00 2001 From: Jamal Hadi Salim Date: Fri, 13 Feb 2009 09:14:17 -0500 Subject: libxtables: consolidate init calls into one function Introduce xtables_init_all() which hides three calls xtables_init(), xtables_set_nfproto(), and xtables_set_params(). Make ip[6]tables-restore, ip[6]tables-save and ip[6]tables-standalone use it. I moved xtables_set_params around for readability reasons. Signed-off-by: Jamal Hadi Salim --- iptables-restore.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'iptables-restore.c') diff --git a/iptables-restore.c b/iptables-restore.c index 01030166..c52af0ad 100644 --- a/iptables-restore.c +++ b/iptables-restore.c @@ -133,9 +133,14 @@ main(int argc, char *argv[]) line = 0; xtables_program_name = program_name; - xtables_init(); - xtables_set_nfproto(NFPROTO_IPV4); iptables_globals.program_name = "iptables-restore"; + c = xtables_init_all(&iptables_globals, NFPROTO_IPV4); + if (c < 0) { + fprintf(stderr, "%s/%s Failed to initialize xtables\n", + iptables_globals.program_name, + iptables_globals.program_version); + exit(1); + } #ifdef NO_SHARED_LIBS init_extensions(); #endif -- cgit v1.2.3