Skip to content
This repository was archived by the owner on Jun 1, 2022. It is now read-only.

Commit a1d643c

Browse files
committed
Prepare for 1.6.7
1 parent c29ae0d commit a1d643c

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1.6.7 2015-XX-XX
1+
1.6.7 2015-10-30
22

33
* Fixed a MSVC parser stack overflow when parsing `regionName.c` and
44
`timeZone.c`. Fix by elliotlo. GitHub #64.

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
dnl AM_CONFIG_HEADER(config.h)
22

33
AC_PREREQ([2.65])
4-
AC_INIT([GeoIP], [1.6.6],[[email protected]],[GeoIP])
4+
AC_INIT([GeoIP], [1.6.7],[[email protected]],[GeoIP])
55
AC_CONFIG_AUX_DIR([.])
66
AC_CONFIG_SRCDIR([libGeoIP/GeoIP.c])
77
AC_CONFIG_MACRO_DIR([m4])

libGeoIP/regionName.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9785,7 +9785,7 @@ const char * GeoIP_region_name_by_code(const char * country_code,const char * re
97859785
&& ((region_code[1] >= 48) && (region_code[1] < (48 + 10)))
97869786
) {
97879787

9788-
/* only numbers, that shorten the large switch statements */
9788+
/* only numbers, that shortens the large switch statements */
97899789
region_code2 = (region_code[0] - 48) * 10 + region_code[1] - 48;
97909790
}
97919791

regioncode/generate_regionName.pl

100644100755
File mode changed.

timezone/generate_timeZone.pl

100644100755
File mode changed.

0 commit comments

Comments
 (0)