diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libssl/src/crypto/x509v3/x509v3.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libssl/src/crypto/x509v3/x509v3.h b/src/lib/libssl/src/crypto/x509v3/x509v3.h index b308abe7cd..dda5344b33 100644 --- a/src/lib/libssl/src/crypto/x509v3/x509v3.h +++ b/src/lib/libssl/src/crypto/x509v3/x509v3.h | |||
@@ -379,8 +379,9 @@ struct ISSUING_DIST_POINT_st | |||
379 | /* onlysomereasons present */ | 379 | /* onlysomereasons present */ |
380 | #define IDP_REASONS 0x40 | 380 | #define IDP_REASONS 0x40 |
381 | 381 | ||
382 | #define X509V3_conf_err(val) ERR_add_error_data(6, "section:", val->section, \ | 382 | #define X509V3_conf_err(val) ERR_asprintf_error_data( \ |
383 | ",name:", val->name, ",value:", val->value); | 383 | "section:%s,name:%s,value:%s", val->section, \ |
384 | val->name, val->value); | ||
384 | 385 | ||
385 | #define X509V3_set_ctx_test(ctx) \ | 386 | #define X509V3_set_ctx_test(ctx) \ |
386 | X509V3_set_ctx(ctx, NULL, NULL, NULL, NULL, CTX_TEST) | 387 | X509V3_set_ctx(ctx, NULL, NULL, NULL, NULL, CTX_TEST) |