Skip to content

Commit

Permalink
Merge pull request #8502 from ranjanyash54/core_dump
Browse files Browse the repository at this point in the history
ospf6d: Fix coredump when "no interface IFNAME area <A.B.C.D>" is called
  • Loading branch information
idryzhov authored Apr 18, 2021
2 parents 79ec61b + f85a411 commit 8d31c67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ospf6d/ospf6_top.c
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ DEFUN (no_ospf6_interface_area,
/* Verify Area */
if (oi->area == NULL) {
vty_out(vty, "%s not attached to area %s\n",
oi->interface->name, oi->area->name);
oi->interface->name, argv[idx_ipv4]->arg);
return CMD_SUCCESS;
}

Expand Down

0 comments on commit 8d31c67

Please sign in to comment.