Skip to content

Commit

Permalink
openssl: sh: print_help to stderr on argument error, man: fix date
Browse files Browse the repository at this point in the history
  • Loading branch information
sighook committed Feb 12, 2024
1 parent 40b9a7c commit c52cb3a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions openssl/.md5sum
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
3 changes: 2 additions & 1 deletion openssl/Pkgfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ name=openssl
version=1.1.1w
release=1
source="https://www.openssl.org/source/$name-$version.tar.gz
mksslcert.sh mksslcert.1"
mksslcert.sh
mksslcert.1"

build() {
mkdir build; cd build
Expand Down
2 changes: 1 addition & 1 deletion openssl/mksslcert.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" mksslcert(1) manual page
.Dd September 12, 2023
.Dd February 12, 2023
.Dt MKSSLCERT 1
.Os
.\" ==================================================================
Expand Down
2 changes: 1 addition & 1 deletion openssl/mksslcert.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ EOF

main() {
if [ ! "$1" ] || [ ! "$2" ]; then
print_help
print_help 1>&2
exit 1
fi

Expand Down

0 comments on commit c52cb3a

Please sign in to comment.