From: Eric Andersen Date: Tue, 20 Jul 2004 06:35:54 +0000 (-0000) Subject: Prevent "`bootp_down' was declared implicitly `extern' and later `static'" warning X-Git-Tag: 1_00_rc1~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e136f269be7941c69814b1ef17b6eceafa68cba;p=platform%2Fupstream%2Fbusybox.git Prevent "`bootp_down' was declared implicitly `extern' and later `static'" warning --- diff --git a/networking/ifupdown.c b/networking/ifupdown.c index a8a7464..5809380 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c @@ -545,6 +545,15 @@ static int dhcp_up(struct interface_defn_t *ifd, execfn *exec) return(0); } +static int bootp_down(struct interface_defn_t *ifd, execfn *exec) +{ +#ifdef CONFIG_FEATURE_IFUPDOWN_IP + return(execute("ip link set %iface% down", ifd, exec)); +#else + return(execute("ifconfig %iface% down", ifd, exec)); +#endif +} + static int dhcp_down(struct interface_defn_t *ifd, execfn *exec) { int result = 0; @@ -567,15 +576,6 @@ static int bootp_up(struct interface_defn_t *ifd, execfn *exec) "--returniffail --serverbcast", ifd, exec)); } -static int bootp_down(struct interface_defn_t *ifd, execfn *exec) -{ -#ifdef CONFIG_FEATURE_IFUPDOWN_IP - return(execute("ip link set %iface% down", ifd, exec)); -#else - return(execute("ifconfig %iface% down", ifd, exec)); -#endif -} - static int ppp_up(struct interface_defn_t *ifd, execfn *exec) { return( execute("pon [[%provider%]]", ifd, exec));