aboutsummaryrefslogtreecommitdiff
path: root/src/url.c
diff options
context:
space:
mode:
authorcorvid <devnull@localhost>2016-07-03 17:39:42 +0000
committercorvid <devnull@localhost>2016-07-03 17:39:42 +0000
commit1290e4a8914471bf1dd28ea6863e86967a81270b (patch)
tree080a0f79f1e13ec400e095c2b6399e544686407e /src/url.c
parente6d3d297362baa3a88d1e3bfd795f871865f251a (diff)
trim tld list
Diffstat (limited to 'src/url.c')
-rw-r--r--src/url.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/url.c b/src/url.c
index 85ad1686..4cedc5e9 100644
--- a/src/url.c
+++ b/src/url.c
@@ -708,7 +708,7 @@ static uint_t Url_host_public_internal_dots(const char *host)
if (tld_len > 0) {
/* These TLDs were chosen by examining the current publicsuffix list
- * in October 2014 and picking out those where it was simplest for
+ * in July 2016 and picking out those where it was simplest for
* them to describe the situation by beginning with a "*.[tld]" rule
* or every rule was "[something].[tld]".
*
@@ -717,8 +717,8 @@ static uint_t Url_host_public_internal_dots(const char *host)
* poorer approximation of administrative boundaries.
*/
const char *const tlds[] = {"bd","bn","ck","cy","er","fj","fk",
- "gu","il","jm","ke","kh","kw","mm","mz",
- "ni","np","pg","ye","za","zm","zw"};
+ "gu","jm","ke","kh","kw","mm","mz",
+ "ni","np","pg","ye","za","zw"};
uint_t i, tld_num = sizeof(tlds) / sizeof(tlds[0]);
for (i = 0; i < tld_num; i++) {