Skip to content
Snippets Groups Projects
Unverified Commit 83bf45ea authored by Leon M. Busch-George's avatar Leon M. Busch-George Committed by Christian Marangi
Browse files

package: base-files: turn error into warning


Some users have their routers configured to supply a DHCP range that
includes the local interface address.
That worked with dnsmasq because it automatically skips the local
address.

Re-enable those existing configurations for the release and hint at
possible future problems.

Signed-off-by: default avatarLeon M. Busch-George <leon@georgemail.eu>
[ wrap commit description and remove unecessary text ]
Signed-off-by: default avatarChristian Marangi <ansuelsmth@gmail.com>
parent 829196e1
No related branches found
No related tags found
Loading
...@@ -80,8 +80,7 @@ BEGIN { ...@@ -80,8 +80,7 @@ BEGIN {
} }
if (ipaddr > start && ipaddr < end) { if (ipaddr > start && ipaddr < end) {
print "ipaddr inside range" > "/dev/stderr" print "warning: ipaddr inside range - this might not be supported in future releases of Openwrt" > "/dev/stderr"
exit(1)
} }
print "START="int2ip(start) print "START="int2ip(start)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment