From: fred_nerk Date: Mon, 10 May 2004 00:39:34 +0000 (+0000) Subject: Init data before trying to use it X-Git-Tag: release_2_0_1~33 X-Git-Url: http://git.sameswireless.fr/l2tpns.git/commitdiff_plain/42144d40273c475a21c74301100a63515f4f131f Init data before trying to use it --- diff --git a/l2tpns.c b/l2tpns.c index 6927eb5..b988c7f 100644 --- a/l2tpns.c +++ b/l2tpns.c @@ -2199,8 +2199,9 @@ int main(int argc, char *argv[]) } time(&basetime); // start clock - // scan args + initdata(); + // scan args while ((o = getopt(argc, argv, "vc:h:a:")) >= 0) { switch (o) @@ -2237,7 +2238,6 @@ int main(int argc, char *argv[]) initiptables(); initplugins(); - initdata(); init_cli(); read_config_file(); log(1, 0, 0, 0, "L2TPNS Version 1.1.0 - http://l2tpns.sourceforge.net/\n");