From aae0227ee66ffbb3ddc507d0be89854c23bd88af Mon Sep 17 00:00:00 2001 From: erdgeist <> Date: Tue, 17 Aug 2010 01:06:22 +0000 Subject: Load state only after initialising all structs. Thanks to Michael S. Combs for pointing out the buf --- opentracker.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/opentracker.c b/opentracker.c index a5b8b0d..579e41e 100644 --- a/opentracker.c +++ b/opentracker.c @@ -535,6 +535,7 @@ int main( int argc, char **argv ) { ot_ip6 serverip, tmpip; int bound = 0, scanon = 1; uint16_t tmpport; + char * statefile = 0; memset( serverip, 0, sizeof(ot_ip6) ); #ifndef WANT_V6 @@ -573,7 +574,7 @@ int main( int argc, char **argv ) { case 'd': set_config_option( &g_serverdir, optarg ); break; case 'u': set_config_option( &g_serveruser, optarg ); break; case 'r': set_config_option( &g_redirecturl, optarg ); break; - case 'l': load_state( optarg ); break; + case 'l': statefile = optarg; break; case 'A': if( !scan_ip6( optarg, tmpip )) { usage( argv[0] ); exit( 1 ); } accesslist_blessip( tmpip, 0xffff ); /* Allow everything for now */ @@ -614,6 +615,10 @@ int main( int argc, char **argv ) { defaul_signal_handlers( ); /* Init all sub systems. This call may fail with an exit() */ trackerlogic_init( ); + + if( statefile ) + load_state( statefile ); + install_signal_handlers( ); /* Kick off our initial clock setting alarm */ -- cgit v1.2.3