netifd: rename customopts to sendopts for consistency
authorSteven Barth <cyrus@openwrt.org>
Thu, 17 Oct 2013 13:12:06 +0000 (13:12 +0000)
committerSteven Barth <cyrus@openwrt.org>
Thu, 17 Oct 2013 13:12:06 +0000 (13:12 +0000)
SVN-Revision: 38437

package/network/config/netifd/files/lib/netifd/proto/dhcp.sh

index 1e0aa68881dd795f8678d7a10f3f38eaa4025181..0117b27ff851d56b84df529171f5bd36e30377bc 100755 (executable)
@@ -13,22 +13,22 @@ proto_dhcp_init_config() {
        proto_config_add_boolean "broadcast"
        proto_config_add_string "reqopts"
        proto_config_add_string "iface6rd"
-       proto_config_add_string "customopts"
+       proto_config_add_string "sendopts"
 }
 
 proto_dhcp_setup() {
        local config="$1"
        local iface="$2"
 
-       local ipaddr hostname clientid vendorid broadcast reqopts iface6rd customopts
-       json_get_vars ipaddr hostname clientid vendorid broadcast reqopts iface6rd customopts
+       local ipaddr hostname clientid vendorid broadcast reqopts iface6rd sendopts
+       json_get_vars ipaddr hostname clientid vendorid broadcast reqopts iface6rd sendopts
 
        local opt dhcpopts
        for opt in $reqopts; do
                append dhcpopts "-O $opt"
        done
 
-       for opt in $customopts; do
+       for opt in $sendopts; do
                append dhcpopts "-x $opt"
        done