Skip to content

Commit

Permalink
Make ca command silently use default if .attr file does not exist
Browse files Browse the repository at this point in the history
Reviewed-by: Nicola Tuveri <[email protected]>
Reviewed-by: Matt Caswell <[email protected]>
(Merged from openssl#7286)
  • Loading branch information
bernd-edlinger committed Jan 21, 2019
1 parent c8f3704 commit ac454d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/apps.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ac454d8

Please sign in to comment.