]> git.ipfire.org Git - thirdparty/FORT-validator.git/commitdiff
Keep validating certs, don't stop on a child cert error
authorpcarana <pc.moreno2099@gmail.com>
Thu, 7 Feb 2019 16:57:06 +0000 (10:57 -0600)
committerpcarana <pc.moreno2099@gmail.com>
Thu, 7 Feb 2019 16:57:06 +0000 (10:57 -0600)
src/rpp.c

index 23594c3206d539f204bcf239c58f950eabd99c5e..ca769c27a855ffdfcfb6a54b5af772f84db3dec7 100644 (file)
--- a/src/rpp.c
+++ b/src/rpp.c
@@ -133,10 +133,7 @@ rpp_traverse(struct rpp *pp)
 
        /* Use CRL stack to validate certificates, and also traverse them. */
        ARRAYLIST_FOREACH(&pp->certs, uri) {
-               /* TODO should we really goto end? */
-               error = certificate_traverse(pp, uri, crls, false);
-               if (error)
-                       goto end;
+               certificate_traverse(pp, uri, crls, false);
        }
 
        /* Use valid address ranges to print ROAs that match them. */