summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-01-06 20:55:38 +0000
committerDr. Stephen Henson <steve@openssl.org>2015-01-06 21:05:07 +0000
commit9f028e4a788b9531bbfc66a3bf2b9cba36a167eb (patch)
tree05d9482472d436d225198495621ff07d0faac3c9
parent64eec8f898f014d796f5f5ebed4db8a5a38cad52 (diff)
use correct function name
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (cherry picked from commit cb62ab4b17818fe66d2fed0a7fe71969131c811b)
-rw-r--r--crypto/asn1/a_verify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/a_verify.c b/crypto/asn1/a_verify.c
index a75c8c9b5f..39206c27ec 100644
--- a/crypto/asn1/a_verify.c
+++ b/crypto/asn1/a_verify.c
@@ -150,7 +150,7 @@ int ASN1_item_verify(const ASN1_ITEM *it, X509_ALGOR *a, ASN1_BIT_STRING *signat
if (signature->type == V_ASN1_BIT_STRING && signature->flags & 0x7)
{
- ASN1err(ASN1_F_ASN1_VERIFY, ASN1_R_INVALID_BIT_STRING_BITS_LEFT);
+ ASN1err(ASN1_F_ASN1_ITEM_VERIFY, ASN1_R_INVALID_BIT_STRING_BITS_LEFT);
return -1;
}