diff --git a/userspace/tools/rtu_stat.c b/userspace/tools/rtu_stat.c
index 5945569b3c7860e1acce08c8e795dd1e5b4dee62..301206c99cf59c499e3649c3fa5db64bfc6be41c 100644
--- a/userspace/tools/rtu_stat.c
+++ b/userspace/tools/rtu_stat.c
@@ -158,13 +158,13 @@ void show_help(char *prgname)
 			"                                       ports\n");
 	fprintf(stderr, "   learning <enable|disable> mask <port_mask>: Enable/disable learning process\n"
 			"                                               in RTU for ports given as a mask\n");
-	fprintf(stderr, "   unrec:            Status of dropping frames when destination MAC is not\n"
-			"                     matched\n");
-	fprintf(stderr, "   unrec <enable|disable> [<port>]: Enable/disable dropping frames when\n"
+	fprintf(stderr, "   unrec:            Status of broadcasting/dropping frames when destination MAC\n"
+			"                     is not matched\n");
+	fprintf(stderr, "   unrec <enable|disable> [<port>]: Enable/disable broadcasting frames when\n"
 			"                                    the destination MAC is not matched.\n"
 			"                                    Apply setting on a given <port> or all ports\n"
 			"                                    when <port> is not provided.\n");
-	fprintf(stderr, "   unrec mask <enable|disable> <port_mask>: Enable/disable dropping frames when\n"
+	fprintf(stderr, "   unrec mask <enable|disable> <port_mask>: Enable/disable broadcasting frames when\n"
 			"                                            the destination MAC is not matched.\n"
 			"                                            Apply setting on ports given as a mask\n");
 	fprintf(stderr, "   vlan <vid> <fid> <port_mask> [<drop>, <prio>, <has_prio>, <prio_override>]:\n"
@@ -771,9 +771,9 @@ int main(int argc, char **argv)
 		}
 		printf("Dropping frames when the destination MAC is not "
 		       "matched\n");
-		printf("-------------\n");
-		printf("Port | Drop\n");
-		printf("-------------\n");
+		printf("----------------------\n");
+		printf("Port | Unrec broadcast\n");
+		printf("----------------------\n");
 		for (i = 0; i < nports; i++) {
 			printf(" %2d    %s\n", i + 1,
 				(ret & 1) ? "enabled" : "disabled");