summaryrefslogtreecommitdiffstats
path: root/nhrpd
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2021-08-27 10:39:45 +0200
committerGitHub <noreply@github.com>2021-08-27 10:39:45 +0200
commit8268be3d16f1705f1ed4f1bdc0bb4ba538a6285d (patch)
tree7601d448dbe8d3f042a9e477c6d8dac7071a324e /nhrpd
parentMerge pull request #9500 from tomaxuser/master (diff)
parentlib: remove unused argument from vrf_cmd_init (diff)
downloadfrr-8268be3d16f1705f1ed4f1bdc0bb4ba538a6285d.tar.xz
frr-8268be3d16f1705f1ed4f1bdc0bb4ba538a6285d.zip
Merge pull request #9496 from idryzhov/vrf-cmd-init-unused-arg
lib: remove unused argument from vrf_cmd_init
Diffstat (limited to 'nhrpd')
-rw-r--r--nhrpd/nhrp_vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nhrpd/nhrp_vty.c b/nhrpd/nhrp_vty.c
index a77121448..50161dae2 100644
--- a/nhrpd/nhrp_vty.c
+++ b/nhrpd/nhrp_vty.c
@@ -1259,7 +1259,7 @@ void nhrp_config_init(void)
install_element(CONFIG_NODE, &nhrp_multicast_nflog_group_cmd);
install_element(CONFIG_NODE, &no_nhrp_multicast_nflog_group_cmd);
- vrf_cmd_init(NULL, &nhrpd_privs);
+ vrf_cmd_init(NULL);
/* interface specific commands */
if_cmd_init(interface_config_write);