Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/ccb9ebefbec68f18b4f479b774fa5f6edc2ad819 You should set ROOT_URL correctly, otherwise the web may not work correctly.

net/net.c: cosmetic: do not use assignment in if condition

This removes the following checkpatch issue:
 - ERROR: do not use assignment in if condition

Signed-off-by: Luca Ceresoli <luca.ceresoli@comelit.it>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Ben Warren <biggerbadderben@gmail.com>
master
Luca Ceresoli 14 years ago committed by Wolfgang Denk
parent c819abeef7
commit ccb9ebefbe
  1. 3
      net/net.c

@ -1616,7 +1616,8 @@ NetReceive(volatile uchar *inpkt, int len)
* a fragment, and either the complete packet or NULL if
* it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
*/
if (!(ip = NetDefragment(ip, &len)))
ip = NetDefragment(ip, &len);
if (!ip)
return;
/*
* watch for ICMP host redirects

Loading…
Cancel
Save