r15315@catbus: nickm | 2007-09-24 11:37:25 -0400

Backport patch from Robert Hogan: fix a status-event related typo.


svn:r11605
This commit is contained in:
Nick Mathewson 2007-09-24 15:41:28 +00:00
parent d2b76f34e6
commit dcbae324ec
2 changed files with 6 additions and 1 deletions

View File

@ -8,6 +8,11 @@ Changes in version 0.1.2.18 - 2007-??-??
--list-fingerprint or --verify-config or --hash-password. (Resolves
bug 499.)
o Minor bugfixes (controller):
- When sending a status event to the controller telling it that an
OR address is readable, set the port correctly. (Previously we
were reporting the dir port.)
Changes in version 0.1.2.17 - 2007-08-30
o Major bugfixes (security):

View File

@ -529,7 +529,7 @@ router_orport_found_reachable(void)
return;
control_event_server_status(LOG_NOTICE,
"REACHABILITY_SUCCEEDED ORADDRESS=%s:%d",
me->address, me->dir_port);
me->address, me->or_port);
}
}