1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

README: add explanation about patch policy

net/net.c: fix indentation
This commit is contained in:
wdenk
2005-05-03 14:12:25 +00:00
parent 434cf850a4
commit 90dc67049d
2 changed files with 9 additions and 5 deletions

View File

@@ -1405,11 +1405,11 @@ NetReceive(volatile uchar * inpkt, int len)
switch (icmph->type) {
case ICMP_REDIRECT:
if (icmph->code != ICMP_REDIR_HOST)
return;
puts (" ICMP Host Redirect to ");
print_IPaddr(icmph->un.gateway);
putc(' ');
if (icmph->code != ICMP_REDIR_HOST)
return;
puts (" ICMP Host Redirect to ");
print_IPaddr(icmph->un.gateway);
putc(' ');
break;
#if (CONFIG_COMMANDS & CFG_CMD_PING)
case ICMP_ECHO_REPLY: