]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Group in torrc is obsolete, so stop checking it
authorRoger Dingledine <arma@torproject.org>
Sun, 27 Jun 2010 06:31:00 +0000 (02:31 -0400)
committerRoger Dingledine <arma@torproject.org>
Sun, 27 Jun 2010 06:31:00 +0000 (02:31 -0400)
src/or/config.c

index fdba58b6bef53e0565f1177ff922e744cfa8e1f1..400b5cbc7da5effd7243c6575b29064f5b5f0381 100644 (file)
@@ -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)) {