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 /ripd | |
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 'ripd')
-rw-r--r-- | ripd/ripd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripd/ripd.c b/ripd/ripd.c index 3d1427c3b..9efceb3d5 100644 --- a/ripd/ripd.c +++ b/ripd/ripd.c @@ -3696,7 +3696,7 @@ void rip_vrf_init(void) vrf_init(rip_vrf_new, rip_vrf_enable, rip_vrf_disable, rip_vrf_delete, rip_vrf_enable); - vrf_cmd_init(NULL, &ripd_privs); + vrf_cmd_init(NULL); } void rip_vrf_terminate(void) |