Skip to content

Commit

Permalink
fixup! APPS/{ecparam,pkeyparam}: fix case where infile and outfile ar…
Browse files Browse the repository at this point in the history
…e the same
  • Loading branch information
DDvO committed Sep 29, 2024
1 parent 0d5ca49 commit c6892ac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 4 additions & 3 deletions doc/man1/openssl-ecparam.pod.in
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,15 @@ Parameters are encoded as B<EcpkParameters> as specified in IETF RFC 3279.

=item B<-in> I<filename>

This specifies the input filename to read parameters from or standard input if
This specifies the input file to read parameters from or standard input if
this option is not specified.

=item B<-out> I<filename>

This specifies the output filename parameters to. Standard output is used
if this option is not present. The output filename should B<not> be the same
as the input filename.
if this option is not present.
The output filename can be the same as the input filename,
which leads to replacing the file contents in situ.

=item B<-noout>

Expand Down
4 changes: 3 additions & 1 deletion doc/man1/openssl-pkeyparam.pod.in
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,15 @@ Print out a usage message.

=item B<-in> I<filename>

This specifies the input filename to read parameters from or standard input if
This specifies the input file to read parameters from or standard input if
this option is not specified.

=item B<-out> I<filename>

This specifies the output filename to write parameters to or standard output if
this option is not specified.
The output filename can be the same as the input filename,
which leads to replacing the file contents in situ.

=item B<-text>

Expand Down

0 comments on commit c6892ac

Please sign in to comment.