summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-12-02 16:04:18 -0500
committerNick Mathewson <nickm@torproject.org>2011-12-02 16:04:18 -0500
commitf78fc8cfb4de9dac3d806c22fc577c8103df2420 (patch)
tree0a2101470c499be064c7f9ae92e0428e53c4d60c
parentcf14a520c87c7a98c1ab351b476f46b69e7be75d (diff)
downloadtor-f78fc8cfb4de9dac3d806c22fc577c8103df2420.tar.gz
tor-f78fc8cfb4de9dac3d806c22fc577c8103df2420.zip
Give DirAllowPrivateAddress an explicit default
By convention, we say whether each bool's default is 0 or 1 Fixes 4536; found by "troll_un"
-rw-r--r--src/or/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c
index 525ff16b78..073b44d5e6 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -232,7 +232,7 @@ static config_var_t _option_vars[] = {
V(DataDirectory, FILENAME, NULL),
OBSOLETE("DebugLogFile"),
V(DisableNetwork, BOOL, "0"),
- V(DirAllowPrivateAddresses, BOOL, NULL),
+ V(DirAllowPrivateAddresses, BOOL, "0"),
V(TestingAuthDirTimeToLearnReachability, INTERVAL, "30 minutes"),
V(DirListenAddress, LINELIST, NULL),
OBSOLETE("DirFetchPeriod"),