From: Gray Remlin Date: Tue, 29 Mar 2011 10:21:32 +0000 (+0000) Subject: NET: Correct potential missing goto label in case statement. X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=9030a55ef3b82aca88d228692fdceffc4ca14aa2;p=project%2Fbcm63xx%2Fu-boot.git NET: Correct potential missing goto label in case statement. If neither CONFIG_CMD_PING or CONFIG_CMD_SNTP are defined but CONFIG_CMD_DNS is, a compile-time error will occur due to the absence of a goto label. Signed-off-by: Gray Remlin --- diff --git a/net/net.c b/net/net.c index a609632412..e50bdf17be 100644 --- a/net/net.c +++ b/net/net.c @@ -1724,7 +1724,8 @@ static int net_check_prereq (proto_t protocol) puts ("*** ERROR: `serverip' not set\n"); return (1); } -#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) +#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \ + defined(CONFIG_CMD_DNS) common: #endif