From: Steven Barth Date: Sun, 15 Jun 2014 22:50:17 +0000 (+0200) Subject: config: accept domains with trailing . X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=commitdiff_plain;h=521ffa12eb85561b5ca3de2f807485bcb004cf42;ds=sidebyside config: accept domains with trailing . --- diff --git a/src/config.c b/src/config.c index db5ca3b..75e9239 100644 --- a/src/config.c +++ b/src/config.c @@ -447,7 +447,13 @@ int config_parse_interface(void *data, size_t len, const char *name, bool overwr continue; uint8_t buf[256]; - int len = dn_comp(blobmsg_get_string(cur), buf, sizeof(buf), NULL, NULL); + char *domain = blobmsg_get_string(cur); + size_t domainlen = strlen(domain); + if (domainlen > 0 && domain[domainlen - 1] == '.') + domain[domainlen - 1] = 0; + + int len = dn_comp(domain, buf, sizeof(buf), NULL, NULL); + free(domain); if (len <= 0) goto err;