mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
we need to send nick to the chalkboard to type 'un' 1000 times:
Stop servers from crashing if they set a Family option (or maybe in other situations too). Bugfix on 0.2.0.9-alpha; reported by Fabian Keil. svn:r12235
This commit is contained in:
parent
ca30c19460
commit
6ca7c118ec
@ -1,4 +1,9 @@
|
|||||||
Changes in version 0.2.0.10-alpha - 2007-1?-??
|
Changes in version 0.2.0.10-alpha - 2007-1?-??
|
||||||
|
o Major bugfixes:
|
||||||
|
- Stop servers from crashing if they set a Family option (or
|
||||||
|
maybe in other situations too). Bugfix on 0.2.0.9-alpha; reported
|
||||||
|
by Fabian Keil.
|
||||||
|
|
||||||
o New requirements:
|
o New requirements:
|
||||||
- Drop support for OpenSSL version 0.9.6. Just about nobody was using
|
- Drop support for OpenSSL version 0.9.6. Just about nobody was using
|
||||||
it, it had no AES, and it hasn't seen any security patches since 2004.
|
it, it had no AES, and it hasn't seen any security patches since 2004.
|
||||||
|
@ -885,7 +885,9 @@ networkstatus_get_router_digest_by_nickname(const char *nickname)
|
|||||||
int
|
int
|
||||||
networkstatus_nickname_is_unnamed(const char *nickname)
|
networkstatus_nickname_is_unnamed(const char *nickname)
|
||||||
{
|
{
|
||||||
return strmap_get_lc(named_server_map, nickname) != NULL;
|
if (!unnamed_server_map)
|
||||||
|
return 0;
|
||||||
|
return strmap_get_lc(unnamed_server_map, nickname) != NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** How frequently do directory authorities re-download fresh networkstatus
|
/** How frequently do directory authorities re-download fresh networkstatus
|
||||||
|
Loading…
Reference in New Issue
Block a user