summaryrefslogtreecommitdiff
path: root/src/or/config.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-01-18 15:33:26 -0500
committerNick Mathewson <nickm@torproject.org>2017-01-18 15:33:26 -0500
commita31a5581eecc900c9e3d7be78ea06a3ea7fe32a3 (patch)
treefc475732e4a79904fa7f42bd4c369f82b153fd12 /src/or/config.c
parent472b277207219d791a399d4d449af6ffdf00a081 (diff)
downloadtor-a31a5581eecc900c9e3d7be78ea06a3ea7fe32a3.tar.gz
tor-a31a5581eecc900c9e3d7be78ea06a3ea7fe32a3.zip
Remove UseDeprecatedGuardAlgorithm.
Diffstat (limited to 'src/or/config.c')
-rw-r--r--src/or/config.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/or/config.c b/src/or/config.c
index 7240308c2f..7a1623ff5d 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -308,9 +308,6 @@ static config_var_t option_vars_[] = {
V(ExtraInfoStatistics, BOOL, "1"),
V(ExtendByEd25519ID, AUTOBOOL, "auto"),
V(FallbackDir, LINELIST, NULL),
- /* XXXX prop271 -- this has an ugly name to remind us to remove it. */
- VAR("UseDeprecatedGuardAlgorithm_", BOOL,
- UseDeprecatedGuardAlgorithm, "0"),
V(UseDefaultFallbackDirs, BOOL, "1"),
@@ -1578,7 +1575,6 @@ options_transition_affects_guards(const or_options_t *old,
return
(old->UseEntryGuards != new->UseEntryGuards ||
- old->UseDeprecatedGuardAlgorithm != new->UseDeprecatedGuardAlgorithm ||
old->UseBridges != new->UseBridges ||
old->UseEntryGuards != new->UseEntryGuards ||
old->ClientUseIPv4 != new->ClientUseIPv4 ||