[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] [tor/master] Group in torrc is obsolete, so stop checking it
Author: Roger Dingledine <arma@xxxxxxxxxxxxxx>
Date: Sun, 27 Jun 2010 02:31:00 -0400
Subject: Group in torrc is obsolete, so stop checking it
Commit: 1def58221721c9fbca62882cea5bf5c7071d955d
---
src/or/config.c | 5 -----
1 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/src/or/config.c b/src/or/config.c
index fdba58b..400b5cb 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -3605,11 +3605,6 @@ options_transition_allowed(or_options_t *old, or_options_t *new_val,
return -1;
}
- if (!opt_streq(old->Group, new_val->Group)) {
- *msg = tor_strdup("While Tor is running, changing Group is not allowed.");
- return -1;
- }
-
if ((old->HardwareAccel != new_val->HardwareAccel)
|| !opt_streq(old->AccelName, new_val->AccelName)
|| !opt_streq(old->AccelDir, new_val->AccelDir)) {
--
1.7.1