r18725@catbus: nickm | 2008-03-11 00:29:57 -0400

Backport to 0.2.0.x branch: Fix bug spotted by mwenge: a server_event should not be a sever_event.  Not backporting to 0.1.2.x.


svn:r13958
This commit is contained in:
Nick Mathewson 2008-03-11 04:30:22 +00:00
parent d8651d1072
commit 5c6d0919ba
2 changed files with 3 additions and 1 deletions

View File

@ -23,6 +23,8 @@ Changes in version 0.2.0.21-rc - 2008-03-02
- We were sometimes miscounting the number of bytes read from the
network, causing our rate limiting to not be followed exactly.
Bugfix on 0.2.0.16-alpha. Reported by lodger.
- Generate "STATUS_SERVER" events rather than misspelled "STATUS_SEVER"
events. Caught by mwenge; bugfix on 0.1.2.x.
o Minor bugfixes:
- Fix compilation with OpenSSL 0.9.8 and 0.9.8a. All other supported

View File

@ -3581,7 +3581,7 @@ control_event_status(int type, int severity, const char *format, va_list args)
status = "STATUS_CLIENT";
break;
case EVENT_STATUS_SERVER:
status = "STATUS_SEVER";
status = "STATUS_SERVER";
break;
default:
log_warn(LD_BUG, "Unrecognized status type %d", type);