diff --git a/ChangeLog b/ChangeLog index 77b283124..e851d9dc2 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 dabe7f115..b7a761c52 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); } }