mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 10:18:25 +00:00
Spaces in CNAME options break parsing.
cname = wibble,wobble
works, but
cname = wibble, wobble
fails. Bug introduced in 2.77. commit a1d973f987
This commit is contained in:
@@ -3862,7 +3862,7 @@ err:
|
||||
new->target = target;
|
||||
new->ttl = ttl;
|
||||
|
||||
arg += strlen(arg)+1;
|
||||
for (arg += strlen(arg)+1; *arg == ' '; arg++);
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user