Browse Source

Reindent microdesc_extract_body().

This commit is whitespace-only; I suggest reviewing with -b.
Nick Mathewson 6 years ago
parent
commit
b1552e8814
1 changed files with 15 additions and 15 deletions
  1. 15 15
      src/feature/dirparse/microdesc_parse.c

+ 15 - 15
src/feature/dirparse/microdesc_parse.c

@@ -142,24 +142,24 @@ microdesc_extract_body(microdesc_t *md,
 {
   const int copy_body = (where != SAVED_IN_CACHE);
 
-      const char *cp = tor_memstr(s, start_of_next_microdesc-s,
-                                  "onion-key");
-      const int no_onion_key = (cp == NULL);
-      if (no_onion_key) {
-        cp = s; /* So that we have *some* junk to put in the body */
-      }
+  const char *cp = tor_memstr(s, start_of_next_microdesc-s, "onion-key");
+
+  const int no_onion_key = (cp == NULL);
+  if (no_onion_key) {
+    cp = s; /* So that we have *some* junk to put in the body */
+  }
 
-      md->bodylen = start_of_next_microdesc - cp;
-      md->saved_location = where;
-      if (copy_body)
-        md->body = tor_memdup_nulterm(cp, md->bodylen);
-      else
-        md->body = (char*)cp;
-      md->off = cp - start;
+  md->bodylen = start_of_next_microdesc - cp;
+  md->saved_location = where;
+  if (copy_body)
+    md->body = tor_memdup_nulterm(cp, md->bodylen);
+  else
+    md->body = (char*)cp;
+  md->off = cp - start;
 
-      crypto_digest256(md->digest, md->body, md->bodylen, DIGEST_SHA256);
+  crypto_digest256(md->digest, md->body, md->bodylen, DIGEST_SHA256);
 
-      return no_onion_key ? -1 : 0;
+  return no_onion_key ? -1 : 0;
 }
 
 /** Parse as many microdescriptors as are found from the string starting at