summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--src/or/control.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 91f2d64eec..e80d89b61b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/src/or/control.c b/src/or/control.c
index 3cc9c5fe2f..1327a1fc6a 100644
--- a/src/or/control.c
+++ b/src/or/control.c
@@ -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);