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 /pbrd | |
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 '')
-rw-r--r-- | pbrd/pbr_vty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pbrd/pbr_vty.c b/pbrd/pbr_vty.c index 2936d1e34..0e6228423 100644 --- a/pbrd/pbr_vty.c +++ b/pbrd/pbr_vty.c @@ -1229,7 +1229,7 @@ void pbr_vty_init(void) { cmd_variable_handler_register(pbr_map_name); - vrf_cmd_init(NULL, &pbr_privs); + vrf_cmd_init(NULL); if_cmd_init(pbr_interface_config_write); |