]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
whitespace fixes
authorNick Mathewson <nickm@torproject.org>
Wed, 11 Jan 2012 19:53:17 +0000 (14:53 -0500)
committerNick Mathewson <nickm@torproject.org>
Mon, 16 Jan 2012 20:07:47 +0000 (15:07 -0500)
changes/clean_asprintf
src/or/control.c
src/or/router.c

index 61382010e6731a2d526bf7e7a1cf68c499f83ae3..ebaabd775f4099a082d1b660957a1d03d0c24055 100644 (file)
@@ -2,4 +2,4 @@
     - Use the smartlist_add_asprintf alias more consistently
       throughout the codebase.
     - Convert more instances of tor_snprintf+tor_strdup into
-      tor_asprintf.
\ No newline at end of file
+      tor_asprintf.
index 2548a5c2005ded38d690f26e4ac7cc2f15c571cb..1d2d8dd392ced73d59d829745a5044cce7cd2717 100644 (file)
@@ -1815,7 +1815,6 @@ circuit_describe_status_for_controller(origin_circuit_t *circ)
   if (circ->rend_data != NULL) {
     smartlist_add_asprintf(descparts, "REND_QUERY=%s",
                  circ->rend_data->onion_address);
-
   }
 
   {
index f8aa1e3b0574e8c6653c43f29e0ee37c07276aa8..0339e682a863172790f81d0803af9ee0b5ca6fbb 100644 (file)
@@ -1973,7 +1973,8 @@ router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router,
   format_iso_time(published, router->cache_info.published_on);
 
   if (router->declared_family && smartlist_len(router->declared_family)) {
-    char *family = smartlist_join_strings(router->declared_family, " ", 0, NULL);
+    char *family = smartlist_join_strings(router->declared_family,
+                                          " ", 0, NULL);
     tor_asprintf(&family_line, "family %s\n", family);
     tor_free(family);
   } else {