summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2020-05-06 17:15:37 -0400
committerNick Mathewson <nickm@torproject.org>2020-05-06 17:15:37 -0400
commitb444096be5ac509be1b2b68dc8e18ca1f558fef5 (patch)
treefdeb798b738356dd1fbf98d5851485a29b843434 /src
parentb7fcbb28d4c3baae4099b709e8df65fc69a5697a (diff)
downloadtor-b444096be5ac509be1b2b68dc8e18ca1f558fef5.tar.gz
tor-b444096be5ac509be1b2b68dc8e18ca1f558fef5.zip
Fix a boolean logic error when logging about invalid hostnames.
Fixes bug 34131; bugfix on 0.4.3.1-alpha.
Diffstat (limited to 'src')
-rw-r--r--src/core/or/connection_edge.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/or/connection_edge.c b/src/core/or/connection_edge.c
index 7f707a5660..37e83ba71e 100644
--- a/src/core/or/connection_edge.c
+++ b/src/core/or/connection_edge.c
@@ -1643,9 +1643,11 @@ parse_extended_hostname(char *address, hostname_type_t *type_out)
failed:
/* otherwise, return to previous state and return 0 */
*s = '.';
+ const bool is_onion = (*type_out == ONION_V2_HOSTNAME) ||
+ (*type_out == ONION_V3_HOSTNAME);
log_warn(LD_APP, "Invalid %shostname %s; rejecting",
- (*type_out == (ONION_V2_HOSTNAME || ONION_V3_HOSTNAME) ? "onion " : ""),
- safe_str_client(address));
+ is_onion ? "onion " : "",
+ safe_str_client(address));
return false;
}