summaryrefslogtreecommitdiffstats
path: root/apps/apps.c
diff options
context:
space:
mode:
authorBernd Edlinger <bernd.edlinger@hotmail.de>2018-09-21 09:05:16 +0200
committerBernd Edlinger <bernd.edlinger@hotmail.de>2019-01-21 15:50:20 +0100
commitac454d8d4663e2fcf8a8437fab8aefd883091c37 (patch)
tree595e19d62de262ec9fe4b214cdb849ee889e75b5 /apps/apps.c
parentc8f370485c43729db44b680e41e875ddd7f3108c (diff)
Make ca command silently use default if .attr file does not exist
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/7286)
Diffstat (limited to 'apps/apps.c')
-rw-r--r--apps/apps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/apps.c b/apps/apps.c
index 67d28eeb9f..ed1b618a53 100644
--- a/apps/apps.c
+++ b/apps/apps.c
@@ -1557,7 +1557,7 @@ CA_DB *load_index(const char *dbfile, DB_ATTR *db_attr)
#else
BIO_snprintf(buf, sizeof(buf), "%s-attr", dbfile);
#endif
- dbattr_conf = app_load_config(buf);
+ dbattr_conf = app_load_config_quiet(buf);
retdb = app_malloc(sizeof(*retdb), "new DB");
retdb->db = tmpdb;