tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 2934500c3133fa9ea651ee9c29d0e025499c20f8
parent bd41e3ed9b18055b87b9aec0cda98a2c8b3c231e
Author: David Goulet <dgoulet@torproject.org>
Date:   Wed, 21 May 2025 13:33:40 +0000

Merge branch 'style-tweaks' into 'main'

trivial whitespace formatting fixes

See merge request tpo/core/tor!893
Diffstat:
Msrc/feature/nodelist/nodelist.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/feature/nodelist/nodelist.c b/src/feature/nodelist/nodelist.c @@ -1507,13 +1507,13 @@ int node_is_dir(const node_t *node) { if (node->rs) { - routerstatus_t * rs = node->rs; + routerstatus_t *rs = node->rs; /* This is true if supports_tunnelled_dir_requests is true which * indicates that we support directory request tunnelled or through the * DirPort. */ return rs->is_v2_dir; } else if (node->ri) { - routerinfo_t * ri = node->ri; + routerinfo_t *ri = node->ri; /* Both tunnelled request is supported or DirPort is set. */ return ri->supports_tunnelled_dir_requests; } else {