]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Changing the ExitPolicyRejectPrivate setting should cause us to rebuild the
authorPeter Palfrader <peter@palfrader.org>
Thu, 15 Nov 2007 15:51:17 +0000 (15:51 +0000)
committerPeter Palfrader <peter@palfrader.org>
Thu, 15 Nov 2007 15:51:17 +0000 (15:51 +0000)
descriptor.

svn:r12507

ChangeLog
src/or/config.c

index 60815ed218e63ca3533f4c345bd9b1f2fbafb06c..c1e1b67ac577e58e289de4f57eb0f2c1eff04dec 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,8 @@ Changes in version 0.2.0.12-alpha - 2007-11-??
       operations.  (Bug spotted by Karsten)
     - Fix a small memory leak whenever we decide against using a
       newly picked entry guard. Reported by Mike Perry.
+    - Changing the ExitPolicyRejectPrivate setting should cause us to
+      rebuild the descriptor.
 
   o Minor features:
     - When we negotiate a v2 OR connection (not yet implemented), accept
index eec4ca4d0a91e7502035e883c7d7e9adbba4afa4..e39017d7a38dbf7b949706c2a9ed67af39b6362f 100644 (file)
@@ -3189,6 +3189,7 @@ options_transition_affects_descriptor(or_options_t *old_options,
       !opt_streq(old_options->Nickname,new_options->Nickname) ||
       !opt_streq(old_options->Address,new_options->Address) ||
       !config_lines_eq(old_options->ExitPolicy,new_options->ExitPolicy) ||
+      old_options->ExitPolicyRejectPrivate != new_options->ExitPolicyRejectPrivate ||
       old_options->ORPort != new_options->ORPort ||
       old_options->DirPort != new_options->DirPort ||
       old_options->ClientOnly != new_options->ClientOnly ||