diff options
author | Rob Austein <sra@hactrn.net> | 2006-08-01 02:18:11 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2006-08-01 02:18:11 +0000 |
commit | f41241423c5a76eada805e449ef989c229ae2360 (patch) | |
tree | 79c0982a21d76b94b01277c212cabb64ee357dd4 /openssl/trunk/crypto/x509v3/v3_asid.c | |
parent | 8ff60320daffcb2a2c9c437eb7477d47b8fceb2d (diff) |
Comments
svn path=/openssl/trunk/crypto/x509v3/v3_asid.c; revision=120
Diffstat (limited to 'openssl/trunk/crypto/x509v3/v3_asid.c')
-rw-r--r-- | openssl/trunk/crypto/x509v3/v3_asid.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/openssl/trunk/crypto/x509v3/v3_asid.c b/openssl/trunk/crypto/x509v3/v3_asid.c index 3aceb8eb..450389fa 100644 --- a/openssl/trunk/crypto/x509v3/v3_asid.c +++ b/openssl/trunk/crypto/x509v3/v3_asid.c @@ -541,7 +541,7 @@ int v3_asid_validate_path(X509_STORE_CTX *ctx) X509 *x; /* - * Start with the ancestral cert. It can't inherit. + * Start with the ancestral cert. It can't inherit anything. */ i = sk_X509_num(ctx->chain) - 1; x = sk_X509_value(ctx->chain, i); @@ -570,9 +570,8 @@ int v3_asid_validate_path(X509_STORE_CTX *ctx) } /* - * Now walk down the chain. No cert may use the extension if - * its parent does not, and no cert may list resources that - * its parent doesn't list. + * Now walk down the chain. No cert may list resources that its + * parent doesn't list. */ while (--i >= 0) { x = sk_X509_value(ctx->chain, i); |