]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
tweaks
authorRoger Dingledine <arma@torproject.org>
Mon, 24 Dec 2007 23:51:22 +0000 (23:51 +0000)
committerRoger Dingledine <arma@torproject.org>
Mon, 24 Dec 2007 23:51:22 +0000 (23:51 +0000)
svn:r12959

src/or/geoip.c
src/or/main.c
src/or/networkstatus.c

index 0c82e97ea568b4184d9ec569396874ff04a360ee..07928affc9ecde701eda3e45e70c8423c828e4c3 100644 (file)
@@ -170,7 +170,7 @@ geoip_get_country_by_ip(uint32_t ipaddr)
   return ent ? ent->country : -1;
 }
 
-/** Return the number of countries recognized by the GEOIP database. */
+/** Return the number of countries recognized by the GeoIP database. */
 int
 geoip_get_n_countries(void)
 {
index 96f8e6fca4a6d33da36fa34f5af31b48373d26c3..f21ef01efb68c36b25b3e42312c793d3a434f73d 100644 (file)
@@ -976,7 +976,6 @@ run_scheduled_events(time_t now)
 /** How often do we (as a cache) fetch a new V1 runningrouters document? */
 #define V1_RUNNINGROUTERS_FETCH_PERIOD (12*60*60)
     time_to_fetch_running_routers = now + V1_RUNNINGROUTERS_FETCH_PERIOD;
-
   }
 
   /* Remove old information from rephist and the rend cache. */
index 6c1a19a1b601a6e9ec6ce5848d1d5b81b3b68c48..85728273d48e30bb2ef5ca203baade704029cabb 100644 (file)
@@ -1121,7 +1121,7 @@ int
 should_delay_dir_fetches(or_options_t *options)
 {
   if (options->UseBridges && !any_bridge_descriptors_known()) {
-    log_info(LD_DIR, "delaying dir fetches");
+    log_info(LD_DIR, "delaying dir fetches (no running bridges known)");
     return 1;
   }
   return 0;