diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-12-16 07:42:47 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-16 07:42:47 -0500 |
| commit | 04dd9e420ee6f5a7d5c47cd50333879f78abc094 (patch) | |
| tree | ba47ee183676532a6bbee87ce173f02dd74d0881 /lib/filter.c | |
| parent | f4d7bc0820f04df798eb208fcce5f5f7e4b18034 (diff) | |
| parent | ba7eb55ec661e18156d9d390b196b6659d0a4752 (diff) | |
Merge pull request #5535 from opensourcerouting/santa-elf
*: cleanup elves were here
Diffstat (limited to 'lib/filter.c')
| -rw-r--r-- | lib/filter.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/filter.c b/lib/filter.c index ed3ffe9c67..31e25d6001 100644 --- a/lib/filter.c +++ b/lib/filter.c @@ -2498,8 +2498,8 @@ DEFUN (no_ipv6_access_list_remark_comment, return no_ipv6_access_list_remark(self, vty, argc, argv); } -void config_write_access_zebra(struct vty *, struct filter *); -void config_write_access_cisco(struct vty *, struct filter *); +static void config_write_access_zebra(struct vty *, struct filter *); +static void config_write_access_cisco(struct vty *, struct filter *); /* show access-list command. */ static int filter_show(struct vty *vty, const char *name, afi_t afi) @@ -2685,7 +2685,7 @@ DEFUN (show_ipv6_access_list_name, return filter_show(vty, argv[idx_word]->arg, AFI_IP6); } -void config_write_access_cisco(struct vty *vty, struct filter *mfilter) +static void config_write_access_cisco(struct vty *vty, struct filter *mfilter) { struct filter_cisco *filter; @@ -2724,7 +2724,7 @@ void config_write_access_cisco(struct vty *vty, struct filter *mfilter) } } -void config_write_access_zebra(struct vty *vty, struct filter *mfilter) +static void config_write_access_zebra(struct vty *vty, struct filter *mfilter) { struct filter_zebra *filter; struct prefix *p; |
