aboutsummaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorSebastian Hahn <sebastian@torproject.org>2010-10-14 17:54:45 +0200
committerSebastian Hahn <sebastian@torproject.org>2010-10-14 17:54:45 +0200
commit9bed40eb103af93e0eb62c8cef2610e432426a5d (patch)
tree21662406783f692e95269197b91a9bc34e153786 /src/or
parent4556f2e7c80274932019a239232235ce571c98f8 (diff)
downloadtor-9bed40eb103af93e0eb62c8cef2610e432426a5d.tar.gz
tor-9bed40eb103af93e0eb62c8cef2610e432426a5d.zip
Make check-spaces happy
Diffstat (limited to 'src/or')
-rw-r--r--src/or/nodelist.c2
-rw-r--r--src/or/policies.c11
-rw-r--r--src/or/routerlist.c3
3 files changed, 9 insertions, 7 deletions
diff --git a/src/or/nodelist.c b/src/or/nodelist.c
index d1246679a5..a8df308851 100644
--- a/src/or/nodelist.c
+++ b/src/or/nodelist.c
@@ -551,7 +551,6 @@ node_is_dir(const node_t *node)
return 0;
}
-
/** Return true iff <b>node</b> has either kind of usable descriptor -- that
* is, a routerdecriptor or a microdescriptor. */
int
@@ -726,3 +725,4 @@ node_get_declared_family(const node_t *node)
else
return NULL;
}
+
diff --git a/src/or/policies.c b/src/or/policies.c
index f20fe79468..b7b377b6bd 100644
--- a/src/or/policies.c
+++ b/src/or/policies.c
@@ -1353,14 +1353,14 @@ parse_short_policy(const char *summary)
if (tor_sscanf(ent_buf, "%u-%u%c", &low, &high, &dummy) == 2) {
if (low<1 || low>65535 || high<1 || high>65535) {
- log_fn(LOG_PROTOCOL_WARN, LD_DIR,"Found bad entry in policy summary %s",
- escaped(orig_summary));
+ log_fn(LOG_PROTOCOL_WARN, LD_DIR,
+ "Found bad entry in policy summary %s", escaped(orig_summary));
return NULL;
}
} else if (tor_sscanf(ent_buf, "%u%c", &low, &dummy) == 1) {
if (low<1 || low>65535) {
- log_fn(LOG_PROTOCOL_WARN, LD_DIR,"Found bad entry in policy summary %s",
- escaped(orig_summary));
+ log_fn(LOG_PROTOCOL_WARN, LD_DIR,
+ "Found bad entry in policy summary %s", escaped(orig_summary));
return NULL;
}
high = low;
@@ -1447,7 +1447,8 @@ int
short_policy_is_reject_star(const short_policy_t *policy)
{
/* This doesn't need to be as much on the lookout as policy_is_reject_star,
- * since policy summaries are from the consensus or from consensus microdescs.
+ * since policy summaries are from the consensus or from consensus
+ * microdescs.
*/
tor_assert(policy);
/* Check for an exact match of "reject 1-65535". */
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 816cfadf33..ccd7dc1237 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -2289,7 +2289,8 @@ hex_digest_nickname_matches(const char *hexdigest, const char *identity_digest,
return !memcmp(digest, identity_digest, DIGEST_LEN);
}
-/* Return true iff <b>router</b> is listed as named in the current consensus. */
+/* Return true iff <b>router</b> is listed as named in the current
+ * consensus. */
static int
router_is_named(const routerinfo_t *router)
{