[tor-commits] [tor/master] Simply geoip_get_country_by_addr based on arma's comment.

nickm at torproject.org nickm at torproject.org
Tue Mar 27 15:22:50 UTC 2012


commit cc94a48ff47a59fb6d7ce0a61aebeb6f8f859b2b
Author: Karsten Loesing <karsten.loesing at gmx.net>
Date:   Thu Feb 9 15:22:02 2012 +0100

    Simply geoip_get_country_by_addr based on arma's comment.
---
 src/or/geoip.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/src/or/geoip.c b/src/or/geoip.c
index a72319d..5e3735c 100644
--- a/src/or/geoip.c
+++ b/src/or/geoip.c
@@ -269,13 +269,11 @@ geoip_get_country_by_ip(uint32_t ipaddr)
 int
 geoip_get_country_by_addr(const tor_addr_t *addr)
 {
-  uint32_t ipaddr;
   if (tor_addr_family(addr) != AF_INET) {
     /*XXXX IP6 support ipv6 geoip.*/
     return -1;
   }
-  ipaddr = tor_addr_to_ipv4h(addr);
-  return geoip_get_country_by_ip(ipaddr);
+  return geoip_get_country_by_ip(tor_addr_to_ipv4h(addr));
 }
 
 /** Return the number of countries recognized by the GeoIP database. */





More information about the tor-commits mailing list