diff options
author | hasso <hasso> | 2004-04-19 17:31:00 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-04-19 17:31:00 +0000 |
commit | 53816d06ea5747cf861634a984957c6cb44106bb (patch) | |
tree | 44334a5354430ed8e147e354c1406e5aacd911bb /ospfd/ospf_vty.c | |
parent | e8d43d1b945dcf360b492870ab21546b9e255674 (diff) | |
download | quagga-53816d06ea5747cf861634a984957c6cb44106bb.tar.bz2 quagga-53816d06ea5747cf861634a984957c6cb44106bb.tar.xz |
****! What else I will discover while documenting this code? Remove useless
warnings and update documentation.
Diffstat (limited to 'ospfd/ospf_vty.c')
-rw-r--r-- | ospfd/ospf_vty.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index 14cd9766..7a5c49a8 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -1702,8 +1702,6 @@ DEFUN (ospf_area_export_list, struct in_addr area_id; int format; - VTY_GET_OSPF_AREA_ID_NO_BB ("export-list", area_id, format, argv[0]); - area = ospf_area_get (ospf, area_id, format); ospf_area_export_list_set (ospf, area, argv[1]); @@ -1725,8 +1723,6 @@ DEFUN (no_ospf_area_export_list, struct in_addr area_id; int format; - VTY_GET_OSPF_AREA_ID_NO_BB ("export-list", area_id, format, argv[0]); - area = ospf_area_lookup_by_area_id (ospf, area_id); if (area == NULL) return CMD_SUCCESS; @@ -1751,8 +1747,6 @@ DEFUN (ospf_area_import_list, struct in_addr area_id; int format; - VTY_GET_OSPF_AREA_ID_NO_BB ("import-list", area_id, format, argv[0]); - area = ospf_area_get (ospf, area_id, format); ospf_area_import_list_set (ospf, area, argv[1]); @@ -1774,7 +1768,6 @@ DEFUN (no_ospf_area_import_list, struct in_addr area_id; int format; - VTY_GET_OSPF_AREA_ID_NO_BB ("import-list", area_id, format, argv[0]); area = ospf_area_lookup_by_area_id (ospf, area_id); if (area == NULL) return CMD_SUCCESS; |