diff options
| author | David Lamparter <equinox@diac24.net> | 2019-11-27 21:49:00 +0100 |
|---|---|---|
| committer | David Lamparter <equinox@diac24.net> | 2019-12-14 12:41:19 +0100 |
| commit | eb51bb9b1fa2fbb339c583cb5b479246b0821dcc (patch) | |
| tree | 5124272233040bf909cbd3d5e58832a72107d558 /lib/filter.c | |
| parent | 25d86233403523c3c03ecc5bc1450c6da37fc6cc (diff) | |
lib: random unused bits cleanup
Signed-off-by: David Lamparter <equinox@diac24.net>
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; |
