diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-06-10 19:11:02 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-06-10 19:11:02 +0000 |
commit | 8d484b64e41c41a6cab1e72120f065c1ab674a0d (patch) | |
tree | b54892267ee4a97e2a297c764693ac1eaa25086f | |
parent | 1ec5705445ed5ab7e5ea055314596fbbf656fa1e (diff) | |
download | tor-8d484b64e41c41a6cab1e72120f065c1ab674a0d.tar.gz tor-8d484b64e41c41a6cab1e72120f065c1ab674a0d.zip |
r16137@tombo: nickm | 2008-06-10 15:10:55 -0400
sign error
svn:r15103
-rw-r--r-- | src/or/geoip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/geoip.c b/src/or/geoip.c index b925e1f464..39d31751aa 100644 --- a/src/or/geoip.c +++ b/src/or/geoip.c @@ -288,7 +288,7 @@ geoip_note_client_seen(geoip_client_action_t action, } /* DOCDOC */ - while (current_request_period_starts + REQUEST_HIST_PERIOD >= now) { + while (current_request_period_starts + REQUEST_HIST_PERIOD < now) { if (!geoip_countries) geoip_countries = smartlist_create(); SMARTLIST_FOREACH(geoip_countries, geoip_country_t *, c, { |