From dcbae324ecc555b1df31f181c6383f63f1ce3c05 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 24 Sep 2007 15:41:28 +0000 Subject: r15315@catbus: nickm | 2007-09-24 11:37:25 -0400 Backport patch from Robert Hogan: fix a status-event related typo. svn:r11605 --- ChangeLog | 5 +++++ src/or/router.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 77b283124b..e851d9dc20 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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); } } -- cgit v1.2.3-54-g00ecf