summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-02-27 23:02:41 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-02-27 23:02:41 +0000
commitc1ca9d3238ad8aeaaf595c30572f573533693305 (patch)
tree74bac53dccf0dc1f5c24dd528c769c9602ea7c67 /apps
parent48435b2098a01133deb69fc82f3a8e52110d89ef (diff)
Add Kerberos fix which was in 0.9.8-stable but never committed to HEAD and
1.0.0. Original fix was on 2007-Mar-09 and had the log message: "Fix kerberos ciphersuite bugs introduced with PR:1336."
Diffstat (limited to 'apps')
-rw-r--r--apps/verify.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/verify.c b/apps/verify.c
index 4fd6b192e3..00242fb5eb 100644
--- a/apps/verify.c
+++ b/apps/verify.c
@@ -350,6 +350,9 @@ static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx)
case X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION:
ok = 1;
+ case X509_V_ERR_KEYUSAGE_NO_CERTSIGN:
+ ok = 1;
+
}
return ok;