diff options
author | Karsten Loesing <karsten.loesing@gmx.net> | 2012-03-28 15:52:33 +0200 |
---|---|---|
committer | Linus Nordberg <linus@torproject.org> | 2012-10-17 10:54:52 +0200 |
commit | c03e3d66a910d103d3cce50a3bc1b778f68c36f2 (patch) | |
tree | 3fc10f5ab188b7fffd00f94b0048937456694ac3 /src/or/config.c | |
parent | 31e224173bda6feb2e9894ba7b820affc3f44a9c (diff) | |
download | tor-c03e3d66a910d103d3cce50a3bc1b778f68c36f2.tar.gz tor-c03e3d66a910d103d3cce50a3bc1b778f68c36f2.zip |
Minor tweaks and comments to nils' geoip v6 code.
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/config.c b/src/or/config.c index fd6224e2c5..d5df5e73fb 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1535,8 +1535,9 @@ options_act(const or_options_t *old_options) ((!old_options || !opt_streq(old_options->GeoIPv6File, options->GeoIPv6File)) || !geoip_is_loaded())) { /* XXXX Don't use this "<default>" junk; make our filename options - * understand prefixes somehow. -NM */ - /* XXXX023 Reload GeoIPFile on SIGHUP. -NM */ + * understand prefixes somehow. See also comment for GeoIPFile. */ + /* XXXX024 Reload GeoIPV6File on SIGHUP. See also comment for + * GeoIPFile. */ char *actual_fname = tor_strdup(options->GeoIPv6File); #ifdef _WIN32 if (!strcmp(actual_fname, "<default>")) { |