diff options
| author | wdenk <wdenk> | 2005-05-03 14:12:25 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2005-05-03 14:12:25 +0000 | 
| commit | 90dc67049df9db3469e6dfa6073d36b7ae848d05 (patch) | |
| tree | 2f8283beb30250f1095665d2f010dc614bf264ec /net/net.c | |
| parent | 434cf850a4afd9a1311c657333ac9ded95ea3096 (diff) | |
| download | olio-uboot-2014.01-90dc67049df9db3469e6dfa6073d36b7ae848d05.tar.xz olio-uboot-2014.01-90dc67049df9db3469e6dfa6073d36b7ae848d05.zip | |
README: add explanation about patch policy
net/net.c: fix indentation
Diffstat (limited to 'net/net.c')
| -rw-r--r-- | net/net.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| @@ -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: |