From 350bfb641d5ed24500e57e466b24bc731180c1f2 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Wed, 7 Mar 2007 09:41:23 +0000 Subject: [PATCH] fix a socks5 error number as pointed out by juliusz and prepare the changelog svn:r9756 --- ChangeLog | 6 ++++-- src/or/rendclient.c | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index a6e90a910..a24e62f11 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,10 +1,12 @@ -Changes in version 0.1.2.10-rc - 2007-03-?? +Changes in version 0.1.2.10-rc - 2007-03-07 o Major bugfixes (Windows): - Do not load the NT services library functions (which may not exist) - just to detect if we're a service trying to shut down. + just to detect if we're a service trying to shut down. Now we run + on Win98 and friends again. o Minor bugfixes (other): - Clarify a couple of log messages. + - Fix a misleading socks5 error number. Changes in version 0.1.2.9-rc - 2007-03-02 diff --git a/src/or/rendclient.c b/src/or/rendclient.c index b8d2d59c9..9518943c1 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -468,7 +468,7 @@ rend_client_desc_here(const char *query) } else { /* 404, or fetch didn't get that far */ log_notice(LD_REND,"Closing stream for '%s.onion': hidden service is " "unavailable (try again later).", safe_str(query)); - connection_mark_unattached_ap(conn, END_STREAM_REASON_TIMEOUT); + connection_mark_unattached_ap(conn, END_STREAM_REASON_RESOLVEFAILED); } } }