summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2021-04-13 23:55:58 +0200
committerDavid Lamparter <equinox@diac24.net>2021-04-15 23:12:45 +0200
commitc4e57cd52e4faace1645291a6ab3b9a84993a9fc (patch)
tree2f48a6d7380cd69879a5a4018324b357c47df9e7
parent48843422d3433682d8b14e9224dd71aeb82afb63 (diff)
vtysh: add lib/spf_backoff.c to vtysh_scan
Signed-off-by: David Lamparter <equinox@diac24.net>
-rw-r--r--lib/subdir.am1
-rwxr-xr-xvtysh/extract.pl.in3
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/subdir.am b/lib/subdir.am
index 978899c6ee..61390419f2 100644
--- a/lib/subdir.am
+++ b/lib/subdir.am
@@ -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
diff --git a/vtysh/extract.pl.in b/vtysh/extract.pl.in
index 5719fac846..345e564e01 100755
--- a/vtysh/extract.pl.in
+++ b/vtysh/extract.pl.in
@@ -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";
}