mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-15 09:20:25 +00:00
commit
c5761c2b5b
@ -313,7 +313,7 @@ show_ip_eigrp_prefix_entry (struct vty *vty, struct eigrp_prefix_entry *tn)
|
||||
vty_out (vty, "%-3c",(tn->state > 0) ? 'A' : 'P');
|
||||
vty_out (vty, "%s/%u, ",inet_ntoa (tn->destination_ipv4->prefix),tn->destination_ipv4->prefixlen);
|
||||
vty_out (vty, "%u successors, ",eigrp_topology_get_successor(tn)->count);
|
||||
vty_out (vty, "FD is %u, serno: %lu %s",tn->fdistance, tn->serno, VTY_NEWLINE);
|
||||
vty_out (vty, "FD is %u, serno: %" PRIu64 " %s",tn->fdistance, tn->serno, VTY_NEWLINE);
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -324,6 +324,7 @@ install_element (enum node_type ntype, struct cmd_element *cmd)
|
||||
{
|
||||
fprintf (stderr, "Command node %d doesn't exist, please check it\n",
|
||||
ntype);
|
||||
fprintf (stderr, "Have you called install_node before this install_element?\n");
|
||||
exit (EXIT_FAILURE);
|
||||
}
|
||||
|
||||
@ -371,6 +372,7 @@ uninstall_element (enum node_type ntype, struct cmd_element *cmd)
|
||||
{
|
||||
fprintf (stderr, "Command node %d doesn't exist, please check it\n",
|
||||
ntype);
|
||||
fprintf (stderr, "Have you called install_node before this install_element?\n");
|
||||
exit (EXIT_FAILURE);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user