fix a socks5 error number as pointed out by juliusz

and prepare the changelog


svn:r9756
This commit is contained in:
Roger Dingledine 2007-03-07 09:41:23 +00:00
parent fbf610e679
commit 350bfb641d
2 changed files with 5 additions and 3 deletions

View File

@ -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

View File

@ -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);
}
}
}