****! What else I will discover while documenting this code? Remove useless
warnings and update documentation.
diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog
index 140f87a..904228c 100644
--- a/ospfd/ChangeLog
+++ b/ospfd/ChangeLog
@@ -1,3 +1,9 @@
+2004-04-19 Hasso Tepper <hasso@estpak.ee>
+
+ * 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 <sowmini.varadhan@sun.com>
* ospf_packet.c: Don't drop packets in Solaris x86.
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c
index 14cd976..7a5c49a 100644
--- a/ospfd/ospf_vty.c
+++ b/ospfd/ospf_vty.c
@@ -1702,8 +1702,6 @@
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 @@
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 @@
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 @@
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;