vtysh: add lib/spf_backoff.c to vtysh_scan

Signed-off-by: David Lamparter <equinox@diac24.net>
This commit is contained in:
David Lamparter 2021-04-13 23:55:58 +02:00
parent 48843422d3
commit c4e57cd52e
2 changed files with 4 additions and 0 deletions

View File

@ -146,6 +146,7 @@ vtysh_scan += \
lib/plist.c \
lib/routemap.c \
lib/routemap_cli.c \
lib/spf_backoff.c \
lib/vrf.c \
lib/vty.c \
# end

View File

@ -133,6 +133,9 @@ sub scan_file {
$protocol = "VTYSH_RIPD";
}
}
elsif ($file =~ /lib\/spf_backoff\.c$/) {
$protocol = "VTYSH_ISISD";
}
elsif ($file =~ /lib\/vty\.c$/) {
$protocol = "VTYSH_ALL";
}