summaryrefslogtreecommitdiffstats
path: root/crypto/conf/conf_def.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2019-07-16 12:54:24 -0400
committerTomas Mraz <tmraz@fedoraproject.org>2019-07-22 16:24:56 +0200
commit46160e6fb957a3f4141c13cba75d03c05b240968 (patch)
tree5dd5b2dcbad972efab0aa20146e53f7032574298 /crypto/conf/conf_def.c
parent56c3a135b239f4c8ccfdbbb1668880d4c39d5b87 (diff)
Deprecate SYSerr, add new FUNCerr macro
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9072)
Diffstat (limited to 'crypto/conf/conf_def.c')
-rw-r--r--crypto/conf/conf_def.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/conf/conf_def.c b/crypto/conf/conf_def.c
index f82dd3cc62..d6cd315479 100644
--- a/crypto/conf/conf_def.c
+++ b/crypto/conf/conf_def.c
@@ -673,7 +673,7 @@ static BIO *process_include(char *include, OPENSSL_DIR_CTX **dirctx,
BIO *next;
if (stat(include, &st) < 0) {
- SYSerr("stat", errno);
+ FUNCerr("stat", errno);
ERR_add_error_data(1, include);
/* missing include file is not fatal error */
return NULL;