From: Alexandre Messier Date: Tue, 14 Mar 2017 19:03:31 +0000 (-0400) Subject: net: link_local: Fix netmask endianness bug X-Git-Tag: v2017.05-rc1~10 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=27a0f038a7f8c999fbffa8b26b16b24dc846e1cf;p=oweals%2Fu-boot.git net: link_local: Fix netmask endianness bug The network mask must be stored in network order when in a 'struct in_addr'. This fix removes the "gatewayip needed but not set" message on the console when using a link-local IP setup. Signed-off-by: Alexandre Messier Signed-off-by: Sylvain Lemieux Acked-by: Joe Hershberger --- diff --git a/net/link_local.c b/net/link_local.c index 27851b6b81..dfd240dfbc 100644 --- a/net/link_local.c +++ b/net/link_local.c @@ -111,7 +111,7 @@ void link_local_start(void) net_set_state(NETLOOP_FAIL); return; } - net_netmask.s_addr = IN_CLASSB_NET; + net_netmask.s_addr = htonl(IN_CLASSB_NET); seed = seed_mac(); if (ip.s_addr == 0)