[pim] "show ip route" renamed to "show ip rib"
diff --git a/pimd/pim_cmd.c b/pimd/pim_cmd.c
index 4e6cb89..60e5a16 100644
--- a/pimd/pim_cmd.c
+++ b/pimd/pim_cmd.c
@@ -2159,12 +2159,12 @@
   return CMD_SUCCESS;
 }
 
-DEFUN (show_ip_route,
-       show_ip_route_cmd,
-       "show ip route A.B.C.D",
+DEFUN (show_ip_rib,
+       show_ip_rib_cmd,
+       "show ip rib A.B.C.D",
        SHOW_STR
        IP_STR
-       ROUTE_STR
+       RIB_STR
        "Unicast address\n")
 {
   struct in_addr addr;
@@ -4261,7 +4261,7 @@
   install_element (VIEW_NODE, &show_ip_multicast_cmd);
   install_element (VIEW_NODE, &show_ip_mroute_cmd);
   install_element (VIEW_NODE, &show_ip_mroute_count_cmd);
-  install_element (VIEW_NODE, &show_ip_route_cmd);
+  install_element (VIEW_NODE, &show_ip_rib_cmd);
   install_element (VIEW_NODE, &show_ip_ssmpingd_cmd);
   install_element (VIEW_NODE, &show_debugging_cmd);
 
@@ -4298,7 +4298,7 @@
   install_element (ENABLE_NODE, &show_ip_multicast_cmd);
   install_element (ENABLE_NODE, &show_ip_mroute_cmd);
   install_element (ENABLE_NODE, &show_ip_mroute_count_cmd);
-  install_element (ENABLE_NODE, &show_ip_route_cmd);
+  install_element (ENABLE_NODE, &show_ip_rib_cmd);
   install_element (ENABLE_NODE, &show_ip_ssmpingd_cmd);
   install_element (ENABLE_NODE, &show_debugging_cmd);