aboutsummaryrefslogtreecommitdiff
path: root/src/or/config.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2012-09-05 18:17:41 -0400
committerRoger Dingledine <arma@torproject.org>2012-09-05 18:17:41 -0400
commitb00b8272daa63e54e25f51bef7850c1c185dba5c (patch)
treec9894c802a56a5f171a80e7904a0680c4dee668d /src/or/config.c
parent325f33047a72050cbe3c35a5dc2ca156d012c996 (diff)
downloadtor-b00b8272daa63e54e25f51bef7850c1c185dba5c.tar
tor-b00b8272daa63e54e25f51bef7850c1c185dba5c.tar.gz
make AuthDirHasIPv6Connectivity match the man page
we can turn it into an autobool later if we have some way for it to make a decision. (patch possibly got lost when nickm merged #6770; or maybe nickm meant for it to be this way. i'm not sure.)
Diffstat (limited to 'src/or/config.c')
-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 60276688c..a4a794a14 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -204,7 +204,7 @@ static config_var_t _option_vars[] = {
V(AuthDirListBadExits, BOOL, "0"),
V(AuthDirMaxServersPerAddr, UINT, "2"),
V(AuthDirMaxServersPerAuthAddr,UINT, "5"),
- V(AuthDirHasIPv6Connectivity, AUTOBOOL, "0"),
+ V(AuthDirHasIPv6Connectivity, BOOL, "0"),
VAR("AuthoritativeDirectory", BOOL, AuthoritativeDir, "0"),
V(AutomapHostsOnResolve, BOOL, "0"),
V(AutomapHostsSuffixes, CSV, ".onion,.exit"),