]> git.proxmox.com Git - mirror_frr.git/commitdiff
[ospfd] Fix address qualified 'ip ospf auth' commands
authorPaul Jakma <paul.jakma@sun.com>
Thu, 10 May 2007 03:00:09 +0000 (03:00 +0000)
committerPaul Jakma <paul.jakma@sun.com>
Thu, 10 May 2007 03:00:09 +0000 (03:00 +0000)
2007-05-09 Milan Kocian <milon@wq.cz>

* ospf_vty.c: Fix commands: 'ip ospf authentication A.B.C.D',
  'no ip ospf authentication A.B.C.D', 'no ip ospf
  authentication-key A.B.C.D'. Simply fix argv's indexes and
          argc check in DEFUN functions.

ospfd/ChangeLog
ospfd/ospf_vty.c

index 153b086e7dae0339ddcb173d55a3ea3ce3587d73..24c3d290b9f61ed4fe988d89fd4bab9b1e061fb5 100644 (file)
@@ -1,3 +1,10 @@
+2007-05-09 Milan Kocian <milon@wq.cz>
+
+       * ospf_vty.c: Fix commands: 'ip ospf authentication A.B.C.D',
+         'no ip ospf authentication A.B.C.D', 'no ip ospf
+         authentication-key A.B.C.D'. Simply fix argv's indexes and
+          argc check in DEFUN functions.
+
 2007-05-07 Paul Jakma <paul.jakma@sun.com>
 
        * ospf_spf.c: (ospf_vertex_new) Dont init vertices to infinity,
index dd700b0ebe5111c815a86760086166a06447cefe..5f9fa2cb90c3a30efebfbd6fa47400d951c089aa 100644 (file)
@@ -4403,7 +4403,7 @@ DEFUN (ip_ospf_authentication,
 
   if (argc == 1)
     {
-      ret = inet_aton(argv[1], &addr);
+      ret = inet_aton(argv[0], &addr);
       if (!ret)
        {
          vty_out (vty, "Please specify interface address by A.B.C.D%s",
@@ -4447,7 +4447,7 @@ DEFUN (no_ip_ospf_authentication,
 
   if (argc == 1)
     {
-      ret = inet_aton(argv[1], &addr);
+      ret = inet_aton(argv[0], &addr);
       if (!ret)
        {
          vty_out (vty, "Please specify interface address by A.B.C.D%s",
@@ -4551,9 +4551,9 @@ DEFUN (no_ip_ospf_authentication_key,
   ifp = vty->index;
   params = IF_DEF_PARAMS (ifp);
 
-  if (argc == 2)
+  if (argc == 1)
     {
-      ret = inet_aton(argv[1], &addr);
+      ret = inet_aton(argv[0], &addr);
       if (!ret)
        {
          vty_out (vty, "Please specify interface address by A.B.C.D%s",