netifd: add missing proto handler conversion after r28632 (thx, Jonathan Bennet)
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 1 Nov 2011 22:02:40 +0000 (22:02 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 1 Nov 2011 22:02:40 +0000 (22:02 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28713 3c298f89-4303-0410-b956-a3cf2f4a3e73

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

index 6749561..5219029 100755 (executable)
@@ -4,7 +4,7 @@
 . ../netifd-proto.sh
 init_proto "$@"
 
-dhcp_init_config() {
+proto_dhcp_init_config() {
        proto_config_add_string "ipaddr"
        proto_config_add_string "netmask"
        proto_config_add_string "hostname"
@@ -14,7 +14,7 @@ dhcp_init_config() {
        proto_config_add_string "reqopts"
 }
 
-dhcp_setup() {
+proto_dhcp_setup() {
        local config="$1"
        local iface="$2"
 
@@ -44,7 +44,7 @@ dhcp_setup() {
                $broadcast $dhcpopts
 }
 
-dhcp_teardown() {
+proto_dhcp_teardown() {
        proto_kill_command
 }
 
This page took 0.02716 seconds and 4 git commands to generate.