diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/or/connection_edge.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -108,6 +108,8 @@ Changes in version 0.2.0.3-alpha - 2007-07-29 - Use CRLF line endings properly in NS events. - Terminate multi-line control events properly. (Original patch from tup.) [Bugfix on 0.1.2.x-alpha] + - Do not include spaces in SOURCE_ADDR fields in STREAM events. Resolves + bug 472. [Bugfix on 0.2.0.x-alpha] o Minor bugfixes (misc): - Choose perfectly fairly among routers when choosing by bandwidth and diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index f310d9289b..efea1464bf 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -1962,7 +1962,7 @@ connection_ap_make_link(char *address, uint16_t port, digest, DIGEST_LEN); } - conn->_base.address = tor_strdup("(local link)"); + conn->_base.address = tor_strdup("(Tor_internal)"); conn->_base.addr = 0; conn->_base.port = 0; |