Browse Source

r8878@Kushana: nickm | 2006-09-21 17:15:47 -0400
Trivial whitespace cleanups.


svn:r8443

Nick Mathewson 17 years ago
parent
commit
7c21dabef1
4 changed files with 5 additions and 5 deletions
  1. 2 1
      src/common/util.c
  2. 1 1
      src/or/config.c
  3. 2 1
      src/or/dns.c
  4. 0 2
      src/or/main.c

+ 2 - 1
src/common/util.c

@@ -207,7 +207,8 @@ _tor_memdup(const void *mem, size_t len DMALLOC_PARAMS)
 /** Helper for places that need to take a function pointer to the right
  * spelling of "free()". */
 void
-_tor_free(void *mem) {
+_tor_free(void *mem)
+{
   tor_free(mem);
 }
 

+ 1 - 1
src/or/config.c

@@ -2448,7 +2448,7 @@ options_validate(or_options_t *old_options, or_options_t *options,
 #ifndef USE_EVENTDNS
   if (options->ServerDNSResolvConfFile)
     log(LOG_WARN, LD_CONFIG,
-        "ServerDNSResolvConfFile only works when eventdns support is enabled.");
+       "ServerDNSResolvConfFile only works when eventdns support is enabled.");
 #endif
 
   if (check_nickname_list(options->ExitNodes, "ExitNodes", msg))

+ 2 - 1
src/or/dns.c

@@ -1522,7 +1522,8 @@ launch_resolve(edge_connection_t *exitconn)
   char *addr = tor_strdup(exitconn->_base.address);
   struct in_addr in;
   int r;
-  int options = get_options()->ServerDNSSearchDomains ? 0 : DNS_QUERY_NO_SEARCH;
+  int options = get_options()->ServerDNSSearchDomains ? 0
+    : DNS_QUERY_NO_SEARCH;
   /* What? Nameservers not configured?  Sounds like a bug. */
   if (!nameservers_configured) {
     log_warn(LD_EXIT, "Harmless bug: nameservers not configured, but resolve "

+ 0 - 2
src/or/main.c

@@ -936,8 +936,6 @@ run_scheduled_events(time_t now)
         crypto_rand_int(12*3600);
     }
   }
-
-
 }
 
 static struct event *timeout_event = NULL;