From: Donatas Abraitis Date: Tue, 5 Apr 2022 12:52:40 +0000 (+0300) Subject: bgpd: Return enum RPKI_NOT_BEING_USED instead of 0 X-Git-Tag: pim6-testing-20220430~91^2~1 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=e1a05dd4101ffd0fdb64d0851f9726ca66dbe18c;p=matthieu%2Ffrr.git bgpd: Return enum RPKI_NOT_BEING_USED instead of 0 Signed-off-by: Donatas Abraitis --- diff --git a/bgpd/bgp_rpki.c b/bgpd/bgp_rpki.c index 45fcbc86b7..5d6cbc6346 100644 --- a/bgpd/bgp_rpki.c +++ b/bgpd/bgp_rpki.c @@ -729,7 +729,7 @@ static int rpki_validate_prefix(struct peer *peer, struct attr *attr, enum pfxv_state result; if (!is_synchronized()) - return 0; + return RPKI_NOT_BEING_USED; // No aspath means route comes from iBGP if (!attr->aspath || !attr->aspath->segments) { @@ -769,7 +769,7 @@ static int rpki_validate_prefix(struct peer *peer, struct attr *attr, break; default: - return 0; + return RPKI_NOT_BEING_USED; } // Do the actual validation @@ -799,7 +799,7 @@ static int rpki_validate_prefix(struct peer *peer, struct attr *attr, prefix, as_number); break; } - return 0; + return RPKI_NOT_BEING_USED; } static int add_cache(struct cache *cache)