]> git.puffer.fish Git - matthieu/frr.git/commitdiff
****! What else I will discover while documenting this code? Remove useless
authorhasso <hasso>
Mon, 19 Apr 2004 17:31:00 +0000 (17:31 +0000)
committerhasso <hasso>
Mon, 19 Apr 2004 17:31:00 +0000 (17:31 +0000)
warnings and update documentation.

doc/ospfd.texi
ospfd/ChangeLog
ospfd/ospf_vty.c

index 4ba9969e91085fc8b03a73ff623651ce66d86e14..10ffe2dc48a3148abfb7722240dafad6f82e1223 100644 (file)
@@ -211,8 +211,7 @@ With example above any intra-area paths from area 0.0.0.10 and from range
 10.10.0.0/16 (for example 10.10.1.0/24 and 10.10.2.128/30) are announced into
 other areas as Type-3 summary-LSA's, but any others (for example 10.11.0.0/16
 or 10.128.30.16/30) aren't.
-Note, that you can't configure export-list to backbone area and this command
-makes sense in ABR only.
+This command makes sense in ABR only.
 @end deffn
 
 @deffn {OSPF Command} {area @var{a.b.c.d} import-list NAME} {}
@@ -231,8 +230,8 @@ Type-3 summary-LSAs.
 @deffnx {OSPF Command} {no area @var{a.b.c.d} filter-list prefix NAME out} {}
 @deffnx {OSPF Command} {no area <0-4294967295> filter-list prefix NAME in} {}
 @deffnx {OSPF Command} {no area <0-4294967295> filter-list prefix NAME out} {}
-Filtering Type-3 summary-LSAs to/from area using prefix lists. Unlike export-
-and import-list, these commands can be used with backbone area as well.
+Filtering Type-3 summary-LSAs to/from area using prefix lists. This command
+makes sense in ABR only.
 @end deffn
 
 @deffn {OSPF Command} {area @var{a.b.c.d} authentication} {}
index 140f87a35d7546efb189c482a6e3ce7051bae81c..904228c19937f437427658aa3f5924059e8d2ee3 100644 (file)
@@ -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.
index 14cd97662a657fde6e7dfa5f54e337c8499f1acc..7a5c49a8ea60d23cd96199905ed15a088ac8aba6 100644 (file)
@@ -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;