[ospfd] Fix address qualified 'ip ospf auth' commands

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.
This commit is contained in:
Paul Jakma 2007-05-10 03:00:09 +00:00
parent 6f0e3f6e17
commit 5dcf71df96
2 changed files with 11 additions and 4 deletions

View 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,

View 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",