]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Whitespace fixes
authorNick Mathewson <nickm@torproject.org>
Mon, 29 Sep 2014 12:48:22 +0000 (08:48 -0400)
committerNick Mathewson <nickm@torproject.org>
Mon, 29 Sep 2014 12:48:22 +0000 (08:48 -0400)
src/or/config.c
src/test/test_crypto.c

index 16acec791c290b8da2435b64cdd050d3db730bf6..3d9e1d2d4d8521da33ebb5b791455e95a9b3a717 100644 (file)
@@ -1676,7 +1676,6 @@ options_act(const or_options_t *old_options)
       connection_or_update_token_buckets(get_connection_array(), options);
   }
 
-
   /* Only collect directory-request statistics on relays and bridges. */
   options->DirReqStatistics = options->DirReqStatistics_option &&
     server_mode(options);
index 32ea2f6c0b2973a0a58093a19c5f8c79afcb965d..795c603fd44360407a43026db6bf8213fac844b8 100644 (file)
@@ -1051,7 +1051,8 @@ test_crypto_pwbox(void *arg)
   (void)arg;
 
   for (i = 0; i < ARRAY_LENGTH(flags); ++i) {
-    tt_int_op(0, ==, crypto_pwbox(&boxed, &len, (const uint8_t*)msg, strlen(msg),
+    tt_int_op(0, ==, crypto_pwbox(&boxed, &len,
+                                  (const uint8_t*)msg, strlen(msg),
                                   pw, strlen(pw), flags[i]));
     tt_assert(boxed);
     tt_assert(len > 128+32);
@@ -1065,13 +1066,16 @@ test_crypto_pwbox(void *arg)
 
     tor_free(decoded);
 
-    tt_int_op(UNPWBOX_BAD_SECRET, ==, crypto_unpwbox(&decoded, &dlen, boxed, len,
+    tt_int_op(UNPWBOX_BAD_SECRET, ==, crypto_unpwbox(&decoded, &dlen,
+                                                     boxed, len,
                                                      pw, strlen(pw)-1));
     boxed[len-1] ^= 1;
-    tt_int_op(UNPWBOX_BAD_SECRET, ==, crypto_unpwbox(&decoded, &dlen, boxed, len,
+    tt_int_op(UNPWBOX_BAD_SECRET, ==, crypto_unpwbox(&decoded, &dlen,
+                                                     boxed, len,
                                                      pw, strlen(pw)));
     boxed[0] = 255;
-    tt_int_op(UNPWBOX_CORRUPTED, ==, crypto_unpwbox(&decoded, &dlen, boxed, len,
+    tt_int_op(UNPWBOX_CORRUPTED, ==, crypto_unpwbox(&decoded, &dlen,
+                                                    boxed, len,
                                                     pw, strlen(pw)));
 
     tor_free(boxed);
@@ -1080,7 +1084,6 @@ test_crypto_pwbox(void *arg)
  done:
   tor_free(boxed);
   tor_free(decoded);
-
 }
 
 /** Test AES-CTR encryption and decryption with IV. */