From f7d82a87eae1aeb4caaf6caa4de1597d21256418 Mon Sep 17 00:00:00 2001 From: Rodrigo Nardi Date: Thu, 3 Aug 2023 17:01:42 -0300 Subject: [PATCH] doc: missing semicolon --- bgpd/bgpd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bgpd/bgpd.c b/bgpd/bgpd.c index 390f8dbc47..64cee9ed81 100644 --- a/bgpd/bgpd.c +++ b/bgpd/bgpd.c @@ -2055,6 +2055,8 @@ int peer_remote_as(struct bgp *bgp, union sockunion *su, const char *conf_if, peer_create(su, conf_if, bgp, local_as, *as, as_type, NULL, true, as_str); } + + return 0; }