diff options
Diffstat (limited to 'ip6tables-standalone.c')
-rw-r--r-- | ip6tables-standalone.c | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/ip6tables-standalone.c b/ip6tables-standalone.c index f4b1f18f..cea48186 100644 --- a/ip6tables-standalone.c +++ b/ip6tables-standalone.c @@ -50,18 +50,11 @@ main(int argc, char *argv[]) struct ip6tc_handle *handle = NULL; program_name = "ip6tables"; - program_version = XTABLES_VERSION; - - lib_dir = getenv("XTABLES_LIBDIR"); - if (lib_dir == NULL) { - lib_dir = getenv("IP6TABLES_LIB_DIR"); - if (lib_dir != NULL) - fprintf(stderr, "IP6TABLES_LIB_DIR is deprecated, " - "use XTABLES_LIBDIR.\n"); - } - if (lib_dir == NULL) - lib_dir = XTABLES_LIBDIR; + program_version = IPTABLES_VERSION; + xtables_program_name = program_name; + xtables_init(); + xtables_set_nfproto(NFPROTO_IPV6); #ifdef NO_SHARED_LIBS init_extensions(); #endif |