avoid verification loops in trusted store when path building
[openssl.git] / crypto / x509 / x509_txt.c
index c44f753c462cb2be7d26e4b1c18eebd6f55a1c4c..9a0911a304a127d564919018622a9981a1d3ea06 100644 (file)
@@ -183,6 +183,8 @@ const char *X509_verify_cert_error_string(long n)
                return("unsupported or invalid name syntax");
        case X509_V_ERR_CRL_PATH_VALIDATION_ERROR:
                return("CRL path validation error");
+       case X509_V_ERR_PATH_LOOP:
+               return("Path Loop");
 
        default:
                BIO_snprintf(buf,sizeof buf,"error number %ld",n);