diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2021-06-22 12:44:24 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2021-06-22 13:03:00 -0400 |
| commit | 1d88e63a4e3d29cec6f49602e3263f13a8de3d1e (patch) | |
| tree | 1451c86b4f8e9605dd0966db076d435fb31abce1 /isisd/isis_vty_fabricd.c | |
| parent | 730649da0eb8700ac9853c6b77e5f0300f3f0c14 (diff) | |
isisd: using argv as a string name is categorically wrong
We are passing around the system id using the variable name
of `argv`. Let's name the variable correctly and pass it around
correctly named.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'isisd/isis_vty_fabricd.c')
| -rw-r--r-- | isisd/isis_vty_fabricd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isisd/isis_vty_fabricd.c b/isisd/isis_vty_fabricd.c index a19fcc240f..2c1b6e932f 100644 --- a/isisd/isis_vty_fabricd.c +++ b/isisd/isis_vty_fabricd.c @@ -187,7 +187,7 @@ DEFUN (show_lsp_flooding, vty_out(vty, "Area %s:\n", area->area_tag ? area->area_tag : "null"); if (lspid) { - lsp = lsp_for_arg(head, lspid, isis); + lsp = lsp_for_sysid(head, lspid, isis); if (lsp) lsp_print_flooding(vty, lsp, isis); continue; |
