# HG changeset patch # User Matthew Wild # Date 1253831118 -3600 # Node ID 3e0e9f80010a79d1e03d6ca5674b7b5f66e48eef # Parent e2f0c514d039582780e45832d7b9bc8be100ab7a net.dns: Stricter matching of nameserver entries in resolv.conf diff -r e2f0c514d039 -r 3e0e9f80010a net/dns.lua --- a/net/dns.lua Thu Sep 24 11:14:05 2009 +0100 +++ b/net/dns.lua Thu Sep 24 23:25:18 2009 +0100 @@ -507,7 +507,7 @@ local resolv_conf = io.open("/etc/resolv.conf"); if resolv_conf then for line in resolv_conf:lines() do - local address = string.match (line, '^%s*nameserver%s+(%d+%.%d+%.%d+%.%d+)') + local address = string.match (line, '^%s*nameserver%s+(%d+%.%d+%.%d+%.%d+)%s*$') if address then self:addnameserver (address) end end elseif os.getenv("WINDIR") then