From 80d71e063879ec62c5ad3da33d7ed90a2e6ef07d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20L=C3=B6per?= Date: Tue, 3 Sep 2019 19:09:27 +0200 Subject: [PATCH] Update commands.go --- iotwifi/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iotwifi/commands.go b/iotwifi/commands.go index 7725b4c..8e11774 100644 --- a/iotwifi/commands.go +++ b/iotwifi/commands.go @@ -74,7 +74,7 @@ func (c *Command) StartDnsmasq() { "--dhcp-vendorclass=" + c.SetupCfg.DnsmasqCfg.VendorClass, "--dhcp-authoritative", "--log-facility=-", - "--dhcp-option-force=160,\"http://0.0.0.0/status\"", // see: https://tools.ietf.org/html/rfc7710 + "--dhcp-option-force=160,\"http://0.0.0.0/\"", // see: https://tools.ietf.org/html/rfc7710 } cmd := exec.Command("dnsmasq", args...)