diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-06-19 11:48:03 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-06-19 12:22:43 -0400 |
commit | 0600e8cab17d2128d663b31d93b93ddc1ab95ee2 (patch) | |
tree | cf52c72e18ee6028d1f90554a2c5db998ed75853 /changes | |
parent | e6782b355ae77455aaff3af9fe3831c07312a5c8 (diff) | |
download | tor-0600e8cab17d2128d663b31d93b93ddc1ab95ee2.tar.gz tor-0600e8cab17d2128d663b31d93b93ddc1ab95ee2.zip |
Disable warning for marked-but-reading in main.c
It turns out this can happen. Even though there is no reason for
connections to be marked but reading, we leave them reading anyway,
so warning here is unwarranted. Let's turn that back on once we do
something sensible and disable reading when we mark. Bugfix for
6203 on Tor 0.2.3.17-beta.
Thanks to cypherpunks for pointing out the general stupidity of the
original code here.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug6203 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/changes/bug6203 b/changes/bug6203 new file mode 100644 index 0000000000..bf967535b8 --- /dev/null +++ b/changes/bug6203 @@ -0,0 +1,5 @@ + o Minor bugfixes: + - Disable a spurious warning about reading on a marked and flushing + connection. We shouldn't be doing that, but apparently we + sometimes do. Fix for bug 6203; bugfix on 0.2.3.17-beta. + |