diff options
Diffstat (limited to 'proto_ipv6.c')
-rw-r--r-- | proto_ipv6.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/proto_ipv6.c b/proto_ipv6.c index 4149602..1cc93ba 100644 --- a/proto_ipv6.c +++ b/proto_ipv6.c @@ -60,21 +60,21 @@ void ipv6(struct pkt_buff *pkt) if (geoip_working()) { tprintf("\t[ Geo ("); - if ((country = geoip6_country_name(sas))) { + if ((country = geoip6_country_name(&sas))) { tprintf("%s", country); - if ((region = geoip6_region_name(sas))) + if ((region = geoip6_region_name(&sas))) tprintf(" / %s", region); - if ((city = geoip6_city_name(sas))) + if ((city = geoip6_city_name(&sas))) tprintf(" / %s", city); } else { tprintf("local"); } tprintf(" => "); - if ((country = geoip6_country_name(sad))) { + if ((country = geoip6_country_name(&sad))) { tprintf("%s", country); - if ((region = geoip6_region_name(sad))) + if ((region = geoip6_region_name(&sad))) tprintf(" / %s", region); - if ((city = geoip6_city_name(sad))) + if ((city = geoip6_city_name(&sad))) tprintf(" / %s", city); } else { tprintf("local"); |