mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Merge remote-tracking branch 'public/bug19203_027' into maint-0.2.8
This commit is contained in:
commit
ada5668c5e
4
changes/bug19203
Normal file
4
changes/bug19203
Normal file
@ -0,0 +1,4 @@
|
||||
o Major bugfixes (user interface):
|
||||
- Correctly give a warning in the cases where a relay is specified by
|
||||
nickname, and one such relay is found, but it is not officially Named.
|
||||
Fixes bug 19203; bugfix on 0.2.3.1-alpha.
|
@ -594,10 +594,10 @@ node_get_by_nickname,(const char *nickname, int warn_if_unnamed))
|
||||
"but none is listed as Named in the directory consensus. "
|
||||
"Choosing one arbitrarily.", nickname);
|
||||
}
|
||||
} else if (smartlist_len(matches)>1 && warn_if_unnamed) {
|
||||
} else if (smartlist_len(matches)==1 && warn_if_unnamed) {
|
||||
char fp[HEX_DIGEST_LEN+1];
|
||||
node_t *node = smartlist_get(matches, 0);
|
||||
if (node->name_lookup_warned) {
|
||||
if (! node->name_lookup_warned) {
|
||||
base16_encode(fp, sizeof(fp), node->identity, DIGEST_LEN);
|
||||
log_warn(LD_CONFIG,
|
||||
"You specified a server \"%s\" by name, but the directory "
|
||||
|
Loading…
Reference in New Issue
Block a user