README: add explanation about patch policy
net/net.c: fix indentation
diff --git a/net/net.c b/net/net.c
index 8e5dbd6..5b06495 100644
--- a/net/net.c
+++ b/net/net.c
@@ -1405,11 +1405,11 @@
 
 			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: