summaryrefslogtreecommitdiff
path: root/ospfd
diff options
context:
space:
mode:
authorhasso <hasso>2004-04-19 17:31:00 +0000
committerhasso <hasso>2004-04-19 17:31:00 +0000
commitc266ac78eecae0af8599a4503589fd8d0eb2b402 (patch)
tree5f3480f70009750f736d504f18374d42943213fc /ospfd
parent808c0a7f790370d43edb336ee442d43694469380 (diff)
****! What else I will discover while documenting this code? Remove useless
warnings and update documentation.
Diffstat (limited to 'ospfd')
-rw-r--r--ospfd/ChangeLog6
-rw-r--r--ospfd/ospf_vty.c7
2 files changed, 6 insertions, 7 deletions
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 <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 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;