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 /staticd | |
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 'staticd')
-rw-r--r-- | staticd/static_vrf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/staticd/static_vrf.c b/staticd/static_vrf.c index 96e5d37d6..4b68729f8 100644 --- a/staticd/static_vrf.c +++ b/staticd/static_vrf.c @@ -175,7 +175,7 @@ void static_vrf_init(void) vrf_init(static_vrf_new, static_vrf_enable, static_vrf_disable, static_vrf_delete, NULL); - vrf_cmd_init(static_vrf_config_write, &static_privs); + vrf_cmd_init(static_vrf_config_write); } void static_vrf_terminate(void) |