diff options
author | Roger Dingledine <arma@torproject.org> | 2010-06-27 02:31:00 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2010-06-27 02:31:00 -0400 |
commit | 1def58221721c9fbca62882cea5bf5c7071d955d (patch) | |
tree | dafefeb30d85b4922d423d7b6aec32eabd7522f4 /src | |
parent | faad8bd0e80807d47aa985599e737256105f2a44 (diff) | |
download | tor-1def58221721c9fbca62882cea5bf5c7071d955d.tar.gz tor-1def58221721c9fbca62882cea5bf5c7071d955d.zip |
Group in torrc is obsolete, so stop checking it
Diffstat (limited to 'src')
-rw-r--r-- | 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 fdba58b6be..400b5cbc7d 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)) { |