Index: /branches/rel_apv_10_4_0_112_gail/usr/src/sys/click/netinet/click_eroute.c
===================================================================
--- /branches/rel_apv_10_4_0_112_gail/usr/src/sys/click/netinet/click_eroute.c	(revision 39103)
+++ /branches/rel_apv_10_4_0_112_gail/usr/src/sys/click/netinet/click_eroute.c	(working copy)
@@ -10701,7 +10701,7 @@
 	int end = 0;
 
 	if (ip_str[0] == '\0'){
-		app_printf(pcb, "please enter blacklisting ip address or off");
+		app_printf(pcb, "please enter blacklisting ip address or off.\n");
 		return EROUTE_CLI_OK;
 	}
 	if (strncmp(ip_str, "off", 3) == 0) {
@@ -10716,8 +10716,8 @@
 
 			start = end + 1;
 			ip_count++;
-		} else if (ip_count < MAX_RTS_BLACKLIST) {
-			app_printf(pcb, "Exceeded max limit of ips");
+		} else if (ip_count >= MAX_RTS_BLACKLIST) {
+			app_printf(pcb, "Exceeded max limit of ips.\n");
 			return 1;
 		}
 
