From: Nick Mathewson Date: Fri, 15 Jun 2018 17:23:44 +0000 (-0400) Subject: fixup! Extract node_t into its own header. X-Git-Tag: tor-0.3.5.1-alpha~429^2~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f901ca958a69efab6cbc2b7e7908e6dffbd0b614;p=thirdparty%2Ftor.git fixup! Extract node_t into its own header. --- diff --git a/src/or/nodelist.c b/src/or/nodelist.c index 2c78c35ab5..72eada57cd 100644 --- a/src/or/nodelist.c +++ b/src/or/nodelist.c @@ -638,7 +638,8 @@ nodelist_set_consensus(networkstatus_t *ns) /** Return 1 iff node has Exit flag and no BadExit flag. * Otherwise, return 0. */ -int node_is_good_exit(const node_t *node) +int +node_is_good_exit(const node_t *node) { return node->is_exit && ! node->is_bad_exit; }