summaryrefslogtreecommitdiffstats
path: root/crypto/x509/v3_bitst.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/x509/v3_bitst.c')
-rw-r--r--crypto/x509/v3_bitst.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/crypto/x509/v3_bitst.c b/crypto/x509/v3_bitst.c
index 68369fb3ef..0caa338ff0 100644
--- a/crypto/x509/v3_bitst.c
+++ b/crypto/x509/v3_bitst.c
@@ -81,9 +81,8 @@ ASN1_BIT_STRING *v2i_ASN1_BIT_STRING(X509V3_EXT_METHOD *method,
}
}
if (!bnam->lname) {
- ERR_raise(ERR_LIB_X509V3,
- X509V3_R_UNKNOWN_BIT_STRING_ARGUMENT);
- ERR_add_error_data(1, val->name);
+ ERR_raise_data(ERR_LIB_X509V3, X509V3_R_UNKNOWN_BIT_STRING_ARGUMENT,
+ "%s", val->name);
ASN1_BIT_STRING_free(bs);
return NULL;
}