-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
openssl: sh: print_help to stderr on argument error, man: fix date
- Loading branch information
Showing
4 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
7ecd544fa46201cf8d2451327b2cb2d2 mksslcert.1 | ||
5df1fd9be620a601a6526d53c0d06066 mksslcert.sh | ||
232098e74aa969b3b22c1b8ae7eb0df4 mksslcert.1 | ||
934b4d7ce15550a70bb996e965354a82 mksslcert.sh | ||
3f76825f195e52d4b10c70040681a275 openssl-1.1.1w.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ EOF | |
|
||
main() { | ||
if [ ! "$1" ] || [ ! "$2" ]; then | ||
print_help | ||
print_help 1>&2 | ||
exit 1 | ||
fi | ||
|
||
|