diff options
author | Roger Dingledine <arma@torproject.org> | 2020-10-01 19:32:32 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2020-10-01 19:32:32 -0400 |
commit | 4f114f59e62397fba98b17e1394adfa29e3de78b (patch) | |
tree | c48c09eaee4fd9814f3f9c24220a78b0584c4410 /src/lib/net | |
parent | e68770719ef4d3d3b83398715b1e10391ab6a1b4 (diff) | |
download | tor-4f114f59e62397fba98b17e1394adfa29e3de78b.tar.gz tor-4f114f59e62397fba98b17e1394adfa29e3de78b.zip |
fix typos
no actual changes
Diffstat (limited to 'src/lib/net')
-rw-r--r-- | src/lib/net/address.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/net/address.c b/src/lib/net/address.c index 5a32533610..ea6c29db9f 100644 --- a/src/lib/net/address.c +++ b/src/lib/net/address.c @@ -1731,8 +1731,8 @@ get_interface_address6,(int severity, sa_family_t family, tor_addr_t *addr)) /* Get a list of public or internal IPs in arbitrary order */ addrs = get_interface_address6_list(severity, family, 1); - /* Find the first non-internal address, or the last internal address - * Ideally, we want the default route, see #12377 for details */ + /* Find the first non-internal address, or the last internal address. + * Ideally, we want the default route; see #12377 for details. */ SMARTLIST_FOREACH_BEGIN(addrs, tor_addr_t *, a) { tor_addr_copy(addr, a); const bool is_internal = tor_addr_is_internal(a, 0); |