diff options
author | Roger Dingledine <arma@torproject.org> | 2008-02-21 09:01:32 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-02-21 09:01:32 +0000 |
commit | b3c0d066e535d33d9ed271e92eb30cdefb18385e (patch) | |
tree | 9ce0e2aac1bdc8e5b5fca86629ffac57ccd71095 /src/or/geoip.c | |
parent | a60f7caa5490a38bd67d01ae65fb08c51250cd87 (diff) | |
download | tor-b3c0d066e535d33d9ed271e92eb30cdefb18385e.tar.gz tor-b3c0d066e535d33d9ed271e92eb30cdefb18385e.zip |
other cleanups that have been sitting in my sandbox
svn:r13649
Diffstat (limited to 'src/or/geoip.c')
-rw-r--r-- | src/or/geoip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/geoip.c b/src/or/geoip.c index 9f93159e30..49f1746b52 100644 --- a/src/or/geoip.c +++ b/src/or/geoip.c @@ -296,8 +296,8 @@ geoip_get_history_start(void) /** Helper type: used to sort per-country totals by value. */ typedef struct c_hist_t { - char country[3]; /**< two-leter country code. */ - unsigned total; /**< total ips seen in this country. */ + char country[3]; /**< Two-letter country code. */ + unsigned total; /**< Total IP addresses seen in this country. */ } c_hist_t; /** Sorting helper: return -1, 1, or 0 based on comparison of two |