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 /staticd | |
parent | Merge pull request #9500 from tomaxuser/master (diff) | |
parent | lib: remove unused argument from vrf_cmd_init (diff) | |
download | frr-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 '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 0b3efd0b4..740d90469 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) |