summaryrefslogtreecommitdiffstats
path: root/staticd
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2021-08-27 10:39:45 +0200
committerGitHub <noreply@github.com>2021-08-27 10:39:45 +0200
commit8268be3d16f1705f1ed4f1bdc0bb4ba538a6285d (patch)
tree7601d448dbe8d3f042a9e477c6d8dac7071a324e /staticd
parentMerge pull request #9500 from tomaxuser/master (diff)
parentlib: remove unused argument from vrf_cmd_init (diff)
downloadfrr-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.c2
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)