diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2021-08-27 10:39:45 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-27 10:39:45 +0200 | 
| commit | 8268be3d16f1705f1ed4f1bdc0bb4ba538a6285d (patch) | |
| tree | 7601d448dbe8d3f042a9e477c6d8dac7071a324e /nhrpd | |
| parent | 881ee579e87ffa181b448705cb791fbd4950bde0 (diff) | |
| parent | cfc369c43a375847989645f54fa037a09a622908 (diff) | |
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.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/nhrpd/nhrp_vty.c b/nhrpd/nhrp_vty.c index a77121448e..50161dae2f 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);  | 
