summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarsten Loesing <karsten.loesing@gmx.net>2009-06-22 15:00:04 +0200
committerNick Mathewson <nickm@torproject.org>2009-06-22 11:51:19 -0400
commite6a1e7001b6546832661ff3608ea3358f7615bd7 (patch)
treee7d0b513289794624866d4b6b4228963e6c964b8
parent9b02ff9564ad6530c8664f3a38faba204702cb9b (diff)
downloadtor-e6a1e7001b6546832661ff3608ea3358f7615bd7.tar.gz
tor-e6a1e7001b6546832661ff3608ea3358f7615bd7.zip
Add warning that the results of --enable-geoip-stats are different from those in master.
-rw-r--r--src/or/config.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/or/config.c b/src/or/config.c
index 81999516dd..b744f8faf4 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -1381,6 +1381,13 @@ options_act(or_options_t *old_options)
geoip_load_file(actual_fname, options);
tor_free(actual_fname);
}
+#ifdef ENABLE_GEOIP_STATS
+ log_warn(LD_CONFIG, "We are configured to measure GeoIP statistics, but "
+ "the way these statistics are measured has changed "
+ "significantly in later versions of Tor. The results may not be "
+ "as expected if you are used to later versions. Be sure you "
+ "know what you are doing.");
+#endif
/* Check if we need to parse and add the EntryNodes config option. */
if (options->EntryNodes &&
(!old_options ||