From bca62fe0457c158c695d4d2e4b1693a2cfb4e301 Mon Sep 17 00:00:00 2001 From: Donald Lee Date: Fri, 23 Jul 2021 16:37:43 +0800 Subject: [PATCH] bgpd: fix typo Signed-off-by: Donald Lee --- bgpd/bgp_routemap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bgpd/bgp_routemap.c b/bgpd/bgp_routemap.c index 5bdc37c9ad..478e9cc26b 100644 --- a/bgpd/bgp_routemap.c +++ b/bgpd/bgp_routemap.c @@ -372,7 +372,7 @@ route_match_script(void *rule, const struct prefix *prefix, void *object) if (frrscript_load(fs, routematch_function, NULL)) { zlog_err( - "Issue loading script or function function; defaulting to no match"); + "Issue loading script or function; defaulting to no match"); return RMAP_NOMATCH; }