Skip to content

Commit

Permalink
Fixed issue #8
Browse files Browse the repository at this point in the history
ip2location committed May 14, 2024
1 parent 90117ca commit c6a6d6c
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ(2.64)
AC_INIT([IP2Location-Varnish], [1.0.0], [support@ip2location.com], [IP2Location-Varnish])
AC_INIT([IP2Location-Varnish], [1.0.4], [support@ip2location.com], [IP2Location-Varnish])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR(src/vmod_ip2location.vcc)
AM_CONFIG_HEADER(config.h)
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
|-|-|
| Author: | IP2Location |
| Date: | 2020-11-17 |
| Version: | 1.0.3 |
| Version: | 1.0.4 |
| Manual section: | 3 |

An Varnish module that enables the website or server admins to find the country, region, city, latitude, longitude, zip code, time zone, ISP, domain name, connection type, area code, weather, mobile network, elevation, usage type by IP address. The module reads the geo location information from **IP2Location BIN data** file.
2 changes: 1 addition & 1 deletion src/vmod_ip2location.c
Original file line number Diff line number Diff line change
@@ -76,7 +76,7 @@ convert(VRT_CTX, float f)
{
char buf[10];

gcvt(f, 5, buf);
(void)! gcvt(f, 5, buf);
return (copy(ctx, buf));
}

0 comments on commit c6a6d6c

Please sign in to comment.