Skip to content

Commit

Permalink
Remove default argument so a user could pass in the file name 'stdout'
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewhop committed Aug 27, 2024
1 parent 18f933b commit 0ba831d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool-openssl/x509.cc
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ bool X509Tool(const args_list_t &args) {
GetString(&in_path, "-in", "", parsed_args);
GetBoolArgument(&req, "-req", parsed_args);
GetString(&signkey_path, "-signkey", "", parsed_args);
GetString(&out_path, "-out", "stdout", parsed_args);
GetString(&out_path, "-out", "", parsed_args);
GetBoolArgument(&noout, "-noout", parsed_args);
GetBoolArgument(&dates, "-dates", parsed_args);
GetBoolArgument(&modulus, "-modulus", parsed_args);
Expand Down

0 comments on commit 0ba831d

Please sign in to comment.