From c4e57cd52e4faace1645291a6ab3b9a84993a9fc Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Tue, 13 Apr 2021 23:55:58 +0200 Subject: [PATCH] vtysh: add lib/spf_backoff.c to vtysh_scan Signed-off-by: David Lamparter --- lib/subdir.am | 1 + vtysh/extract.pl.in | 3 +++ 2 files changed, 4 insertions(+) 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"; } -- 2.39.5