diff options
Diffstat (limited to 'ospfd/ospf_vty.c')
-rw-r--r-- | ospfd/ospf_vty.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index 46e7ffa5..19dfb1c4 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -28,6 +28,7 @@ #include "table.h" #include "vty.h" #include "command.h" +#include "lib/route_types.h" #include "plist.h" #include "log.h" #include "zclient.h" @@ -1568,7 +1569,7 @@ DEFUN (no_ospf_area_stub_no_summary, } static int -ospf_area_nssa_cmd_handler (struct vty *vty, int argc, const char *argv[], +ospf_area_nssa_cmd_handler (struct vty *vty, int argc, argv_t argv, int nosum) { struct ospf *ospf = vty->index; @@ -3763,6 +3764,9 @@ show_as_external_lsa_detail (struct vty *vty, struct ospf_lsa *lsa) /* N.B. This function currently seems to be unused. */ static int +show_as_external_lsa_stdvty (struct ospf_lsa *lsa) __attribute__((unused)) ; + +static int show_as_external_lsa_stdvty (struct ospf_lsa *lsa) { struct as_external_lsa *al = (struct as_external_lsa *) lsa->data; |