From: Markus Wigge Date: Wed, 4 Feb 2009 14:58:31 +0000 (+0000) Subject: "-R" will not work as it needs the configured IP on the interface. Thus this option... X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=02cc61b0e4d214e5a4926a89653bc5484df4c1db;p=openwrt%2Fstaging%2Frmilecki.git "-R" will not work as it needs the configured IP on the interface. Thus this option leads to the warning message: "udhcpc: bind(UDP): Cannot assign requested address" SVN-Revision: 14408 --- diff --git a/package/dnsmasq/files/dnsmasq.init b/package/dnsmasq/files/dnsmasq.init index de9b92d52bc..6cb0e0f4fae 100644 --- a/package/dnsmasq/files/dnsmasq.init +++ b/package/dnsmasq/files/dnsmasq.init @@ -227,7 +227,7 @@ dhcp_add() { #check for an already active dhcp server on the interface, unless 'force' is set config_get_bool force "$cfg" force 0 [ "$force" -gt 0 ] || { - udhcpc -n -q -R -s /bin/true -t 1 -i $ifname >&- && return 0 + udhcpc -n -q -s /bin/true -t 1 -i $ifname >&- && return 0 } config_get start "$cfg" start