commit 10c8cc5879c3c3d0b8d9e45229888aef7f9fb535
parent 9a1e633b27174f0ecc933fad3fbccbfb1c5f990a
Author: David Goulet <dgoulet@torproject.org>
Date: Tue, 25 Mar 2025 13:06:24 -0400
Merge branch 'maint-0.4.8'
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/feature/nodelist/node_select.h b/src/feature/nodelist/node_select.h
@@ -29,7 +29,7 @@ typedef enum router_crn_flags_t {
/* On clients, if choosing a node for a direct connection, only provide
* nodes that satisfy ClientPreferIPv6OR. */
CRN_PREF_ADDR = 1<<5,
- /* On clients, indiate that we need a HS related circuit (IP, HSDir or RP).
+ /* On clients, indicate that we need a HS related circuit (IP, HSDir, or RP).
* This is used in order to avoid certain nodes for these purposes. */
CRN_FOR_HS = 1<<6,
/* On clients, only provide nodes that can initiate IPv6 extends. */
diff --git a/src/feature/nodelist/routerlist.c b/src/feature/nodelist/routerlist.c
@@ -600,7 +600,7 @@ router_can_choose_node(const node_t *node, int flags)
return false;
if (initiate_ipv6_extend && !node_supports_initiating_ipv6_extends(node))
return false;
- /* MiddleOnly node should never be used for HS ndpoints (IP, RP, HSDir). */
+ /* MiddleOnly node should never be used for HS endpoints (IP, RP, HSDir). */
if (for_hs && node->is_middle_only) {
return false;
}