From eec7968f18bf16034ff924cd56ce07611fb188da Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Tue, 22 Apr 2003 08:29:21 +0000 Subject: [PATCH] fix typo Submitted by: Nils Larsch --- crypto/x509/x509type.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/x509/x509type.c b/crypto/x509/x509type.c index 8eaf102480..4af98214a8 100644 --- a/crypto/x509/x509type.c +++ b/crypto/x509/x509type.c @@ -102,10 +102,10 @@ int X509_certificate_type(X509 *x, EVP_PKEY *pkey) case EVP_PKEY_RSA: ret|=EVP_PKS_RSA; break; - case EVP_PKS_DSA: + case EVP_PKEY_DSA: ret|=EVP_PKS_DSA; break; - case EVP_PKS_EC: + case EVP_PKEY_EC: ret|=EVP_PKS_EC; break; default: -- 2.34.1