@@ -402,9 +402,9 @@ downloader() {
402
402
if [ -n " $_ciphersuites " ]; then
403
403
curl --proto ' =https' --tlsv1.2 --ciphers " $_ciphersuites " --silent --show-error --fail --location " $1 " --output " $2 "
404
404
else
405
- echo " Warning: Not forcing strong cipher suites for TLS, this is potentially less secure"
405
+ echo " Warning: Not enforcing strong cipher suites for TLS, this is potentially less secure"
406
406
if ! check_help_for " $3 " curl --proto --tlsv1.2; then
407
- echo " Warning: Not forcing TLS v1.2, this is potentially less secure"
407
+ echo " Warning: Not enforcing TLS v1.2, this is potentially less secure"
408
408
curl --silent --show-error --fail --location " $1 " --output " $2 "
409
409
else
410
410
curl --proto ' =https' --tlsv1.2 --silent --show-error --fail --location " $1 " --output " $2 "
@@ -416,9 +416,9 @@ downloader() {
416
416
if [ -n " $_ciphersuites " ]; then
417
417
wget --https-only --secure-protocol=TLSv1_2 --ciphers " $_ciphersuites " " $1 " -O " $2 "
418
418
else
419
- echo " Warning: Not forcing strong cipher suites for TLS, this is potentially less secure"
419
+ echo " Warning: Not enforcing strong cipher suites for TLS, this is potentially less secure"
420
420
if ! check_help_for " $3 " wget --https-only --secure-protocol; then
421
- echo " Warning: Not forcing TLS v1.2, this is potentially less secure"
421
+ echo " Warning: Not enforcing TLS v1.2, this is potentially less secure"
422
422
wget " $1 " -O " $2 "
423
423
else
424
424
wget --https-only --secure-protocol=TLSv1_2 " $1 " -O " $2 "
0 commit comments