From 52930766277e57fcc2332e35cefd2bd07bb7ed16 Mon Sep 17 00:00:00 2001
From: hasso <hasso>
Date: Mon, 19 Apr 2004 18:26:53 +0000
Subject: Ooops. Check if area-id format is valid.

---
 ospfd/ospf_vty.c | 8 ++++++++
 1 file changed, 8 insertions(+)

(limited to 'ospfd')

diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c
index 7a5c49a8..2b2c000e 100644
--- a/ospfd/ospf_vty.c
+++ b/ospfd/ospf_vty.c
@@ -1702,6 +1702,8 @@ DEFUN (ospf_area_export_list,
   struct in_addr area_id;
   int format;
 
+  VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
+
   area = ospf_area_get (ospf, area_id, format);
   ospf_area_export_list_set (ospf, area, argv[1]);
 
@@ -1723,6 +1725,8 @@ DEFUN (no_ospf_area_export_list,
   struct in_addr area_id;
   int format;
 
+  VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
+
   area = ospf_area_lookup_by_area_id (ospf, area_id);
   if (area == NULL)
     return CMD_SUCCESS;
@@ -1747,6 +1751,8 @@ DEFUN (ospf_area_import_list,
   struct in_addr area_id;
   int format;
 
+  VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]);
+
   area = ospf_area_get (ospf, area_id, format);
   ospf_area_import_list_set (ospf, area, argv[1]);
 
@@ -1768,6 +1774,8 @@ DEFUN (no_ospf_area_import_list,
   struct in_addr area_id;
   int format;
 
+  VTY_GET_OSPF_AREA_ID (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