From e1a05dd4101ffd0fdb64d0851f9726ca66dbe18c Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Tue, 5 Apr 2022 15:52:40 +0300 Subject: [PATCH] bgpd: Return enum RPKI_NOT_BEING_USED instead of 0 Signed-off-by: Donatas Abraitis --- bgpd/bgp_rpki.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) -- 2.39.5