From: Roger Dingledine Date: Tue, 9 Nov 2004 02:12:55 +0000 (+0000) Subject: stop breaking the get_options() abstraction in config.c X-Git-Tag: debian-version-0.0.8+0.0.9pre5-1~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3805221262c92802dfe57eff4cc8652ee62b8537;p=thirdparty%2Ftor.git stop breaking the get_options() abstraction in config.c svn:r2715 --- diff --git a/src/or/config.c b/src/or/config.c index e5916f1f49..6ca23e8371 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1231,15 +1231,14 @@ getconfig(int argc, char **argv) static char **backup_argv; static int backup_argc; - /* we don't use get_options() here, since it's null on the first call */ - oldoptions = global_options; - if (argv) { /* first time we're called. save commandline args */ backup_argv = argv; backup_argc = argc; + oldoptions = NULL; } else { /* we're reloading. need to clean up old options first. */ argv = backup_argv; argc = backup_argc; + oldoptions = get_options(); } if (argc > 1 && (!strcmp(argv[1], "-h") || !strcmp(argv[1],"--help"))) { print_usage();