Newer OpenSSL versions have a slightly different function-signature
coming out of "openssl dhparam -C". Be prepared for that -- while retaining compatibility with the older versions. PR: 234361 Reported by: Gerald Gutierrez
This commit is contained in:
parent
0be7eeab72
commit
fdad400324
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=488753
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@
|
||||||
- echo "${o_output}"
|
- echo "${o_output}"
|
||||||
-
|
-
|
||||||
+ if openssl dhparam -C "$@" | sed \
|
+ if openssl dhparam -C "$@" | sed \
|
||||||
+ -e 's/^DH \*get_dh[0-9]*/static DH *get_dhParams/' \
|
+ -e 's/^\(static \)*DH \*get_dh[0-9]*/static DH *get_dhParams/' \
|
||||||
+ -e '/^-----BEGIN DH PARAMETERS-----$/,/^-----END DH PARAMETERS-----$/ d;/^#/ d'
|
+ -e '/^-----BEGIN DH PARAMETERS-----$/,/^-----END DH PARAMETERS-----$/ d;/^#/ d'
|
||||||
+ then
|
+ then
|
||||||
return 0
|
return 0
|
||||||
|
|
Loading…
Reference in a new issue