diff options
author | corvid <devnull@localhost> | 2016-07-03 17:39:42 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2016-07-03 17:39:42 +0000 |
commit | 1290e4a8914471bf1dd28ea6863e86967a81270b (patch) | |
tree | 080a0f79f1e13ec400e095c2b6399e544686407e | |
parent | e6d3d297362baa3a88d1e3bfd795f871865f251a (diff) |
trim tld list
-rw-r--r-- | src/url.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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++) { |