]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
trivial whitespace formatting fixes
authorRoger Dingledine <arma@torproject.org>
Sun, 11 May 2025 21:29:13 +0000 (17:29 -0400)
committerRoger Dingledine <arma@torproject.org>
Sun, 11 May 2025 21:29:13 +0000 (17:29 -0400)
src/feature/nodelist/nodelist.c

index 26f78a5bfb78c4a8031533a8db5d7815ff83796d..250f4fc782bf2c1306b4a9dd3726f60c10424856 100644 (file)
@@ -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 {