From c266ac78eecae0af8599a4503589fd8d0eb2b402 Mon Sep 17 00:00:00 2001 From: hasso Date: Mon, 19 Apr 2004 17:31:00 +0000 Subject: ****! What else I will discover while documenting this code? Remove useless warnings and update documentation. --- ospfd/ChangeLog | 6 ++++++ ospfd/ospf_vty.c | 7 ------- 2 files changed, 6 insertions(+), 7 deletions(-) (limited to 'ospfd') diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog index 140f87a3..904228c1 100644 --- a/ospfd/ChangeLog +++ b/ospfd/ChangeLog @@ -1,3 +1,9 @@ +2004-04-19 Hasso Tepper + + * ospf_vty.c: Don't warn that export- and import-list can't be + configured to backbone area if they are applied and are working + fine. + 2004-02-19 Sowmini Varadhan * ospf_packet.c: Don't drop packets in Solaris x86. 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; -- cgit v1.2.1