commit e79e84efd33ad8af7583222c7fc2661a20837f31
parent 58248adab617eb240d6d8accd7620a1cabc1a1ff
Author: Roger Dingledine <arma@torproject.org>
Date: Sun, 11 May 2025 17:29:13 -0400
trivial whitespace formatting fixes
Diffstat:
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 {