aboutsummaryrefslogtreecommitdiff
path: root/src/or/config.c
diff options
context:
space:
mode:
authorSebastian Hahn <sebastian@torproject.org>2010-10-30 00:03:31 +0200
committerSebastian Hahn <sebastian@torproject.org>2010-11-10 15:48:25 +0100
commit13a7e8bea3b9d37b1bfd5e3a3ea14dd650be632e (patch)
treeefd68ad58c501b940cc93630dbb06c25ac7cdd6f /src/or/config.c
parent87a0e733d1d4c65cf4919eaf8f1cc3b4039b21d6 (diff)
downloadtor-13a7e8bea3b9d37b1bfd5e3a3ea14dd650be632e.tar
tor-13a7e8bea3b9d37b1bfd5e3a3ea14dd650be632e.tar.gz
Comment out the (unused) RunTesting option
The code that makes use of the RunTesting option is #if 0, so setting this option has no effect. Mark the option as obsolete for now, so that Tor doesn't list it as an available option erroneously.
Diffstat (limited to 'src/or/config.c')
-rw-r--r--src/or/config.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c
index ee0c466e0..655af3797 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -337,7 +337,8 @@ static config_var_t _option_vars[] = {
V(RephistTrackTime, INTERVAL, "24 hours"),
OBSOLETE("RouterFile"),
V(RunAsDaemon, BOOL, "0"),
- V(RunTesting, BOOL, "0"),
+// V(RunTesting, BOOL, "0"),
+ OBSOLETE("RunTesting"), // currently unused
V(SafeLogging, STRING, "1"),
V(SafeSocks, BOOL, "0"),
V(ServerDNSAllowBrokenConfig, BOOL, "1"),