From 8a8b45c1741ad0338391dd98726f86bc76f6c706 Mon Sep 17 00:00:00 2001 From: David Parrish Date: Mon, 10 May 2004 00:39:34 +0000 Subject: [PATCH] Init data before trying to use it --- l2tpns.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); -- 2.20.1