diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-09-24 15:41:28 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-09-24 15:41:28 +0000 |
commit | dcbae324ecc555b1df31f181c6383f63f1ce3c05 (patch) | |
tree | 90c4928afa09a761946fb6e215ec32f122a71cd9 | |
parent | d2b76f34e687668026bd1e2fb120ba0e089a4ebb (diff) | |
download | tor-dcbae324ecc555b1df31f181c6383f63f1ce3c05.tar.gz tor-dcbae324ecc555b1df31f181c6383f63f1ce3c05.zip |
r15315@catbus: nickm | 2007-09-24 11:37:25 -0400
Backport patch from Robert Hogan: fix a status-event related typo.
svn:r11605
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/or/router.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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): diff --git a/src/or/router.c b/src/or/router.c index dabe7f1150..b7a761c52a 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -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); } } |