From: Roger Dingledine Date: Sun, 11 May 2025 21:29:13 +0000 (-0400) Subject: trivial whitespace formatting fixes X-Git-Tag: tor-0.4.9.3-alpha~52^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e79e84efd33ad8af7583222c7fc2661a20837f31;p=thirdparty%2Ftor.git trivial whitespace formatting fixes --- diff --git a/src/feature/nodelist/nodelist.c b/src/feature/nodelist/nodelist.c index 26f78a5bfb..250f4fc782 100644 --- 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 {