aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2007-10-21 04:15:28 +0000
committerRoger Dingledine <arma@torproject.org>2007-10-21 04:15:28 +0000
commitb4a28f8b8307e690b49b6f238ae7c289757f0a6e (patch)
tree9d077e13a0a25ccd9babfa645238c4f52419fa6f /ChangeLog
parent5ada3cc09ae7c5bf63acdc78940b0f5b2e5d2411 (diff)
downloadtor-b4a28f8b8307e690b49b6f238ae7c289757f0a6e.tar.gz
tor-b4a28f8b8307e690b49b6f238ae7c289757f0a6e.zip
Bugfix on r7072, which turned out to basically be a no-op:
Respond to INT and TERM SIGNAL commands before we execute the signal, in case the signal shuts us down. We had a patch in 0.1.2.1-alpha that tried to do this by queueing the response on the connection's buffer before shutting down, but that really isn't the same thing. Bug located by Matt Edman. This is a bug in 0.1.2.x too, but there's no way we should backport this fix. Speaking of which, can somebody double-check it? :) svn:r12070
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog11
1 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index d62e6c05cc..dfea491beb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -68,7 +68,7 @@ Changes in version 0.2.0.9-alpha - 2007-10-??
detached signatures for a divergent vote.
- Fix a small memory leak when computing a consensus.
- o Minor bugfixes (v3 directory protocol)
+ o Minor bugfixes (v3 directory protocol):
- Delete unverified-consensus when the real consensus is set.
- Consider retrying a consensus networkstatus fetch immediately after one
fails: don't wait 60 seconds to notice.
@@ -76,8 +76,13 @@ Changes in version 0.2.0.9-alpha - 2007-10-??
exists before trying to replace the current one.
o Minor bugfixes (controller):
- - Don't reset trusted dir server list when we set a configuration option.
- (Patch from Robert Hogan.)
+ - Don't reset trusted dir server list when we set a configuration
+ option. Patch from Robert Hogan.
+ - Respond to INT and TERM SIGNAL commands before we execute the
+ signal, in case the signal shuts us down. We had a patch in
+ 0.1.2.1-alpha that tried to do this by queueing the response on
+ the connection's buffer before shutting down, but that really
+ isn't the same thing. Bug located by Matt Edman.
o Minor bugfixes (memory leaks):
- Stop leaking memory on failing case of base32_decode. Bugfix on