diff options
author | Igor Ryzhov <iryzhov@nfware.com> | 2021-08-25 18:29:42 +0200 |
---|---|---|
committer | Igor Ryzhov <iryzhov@nfware.com> | 2021-08-26 11:01:22 +0200 |
commit | cfc369c43a375847989645f54fa037a09a622908 (patch) | |
tree | ff63e609981e53da21d60be7ea8205f91be064e8 /lib/vrf.c | |
parent | Merge pull request #9466 from idryzhov/vrf-netns (diff) | |
download | frr-cfc369c43a375847989645f54fa037a09a622908.tar.xz frr-cfc369c43a375847989645f54fa037a09a622908.zip |
lib: remove unused argument from vrf_cmd_init
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'lib/vrf.c')
-rw-r--r-- | lib/vrf.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -907,8 +907,7 @@ void vrf_install_commands(void) install_element(ENABLE_NODE, &no_vrf_debug_cmd); } -void vrf_cmd_init(int (*writefunc)(struct vty *vty), - struct zebra_privs_t *daemon_privs) +void vrf_cmd_init(int (*writefunc)(struct vty *vty)) { install_element(CONFIG_NODE, &vrf_cmd); install_element(CONFIG_NODE, &no_vrf_cmd); |