Skip to content

Commit c0d9427

Browse files
authored
Merge pull request #1889 from dcooper16/send_to_stderr_30
Print errors to stderr
2 parents 931d009 + 7d5e24c commit c0d9427

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

testssl.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19680,7 +19680,7 @@ parse_cmd_line() {
1968019680
[[ $? -eq 0 ]] && shift
1968119681
case "$MASS_TESTING_MODE" in
1968219682
serial|parallel) ;;
19683-
*) tmln_magenta "\nmass testing mode can be either \"serial\" or \"parallel\""
19683+
*) tmln_magenta "\nmass testing mode can be either \"serial\" or \"parallel\"" 1>&2
1968419684
help 1
1968519685
esac
1968619686
;;
@@ -19695,7 +19695,7 @@ parse_cmd_line() {
1969519695
[[ $? -eq 0 ]] && shift
1969619696
case "$WARNINGS" in
1969719697
batch|off) ;;
19698-
*) tmln_magenta "\nwarnings can be either \"batch\", or \"off\""
19698+
*) tmln_magenta "\nwarnings can be either \"batch\", or \"off\"" 1>&2
1969919699
help 1
1970019700
esac
1970119701
;;
@@ -19713,7 +19713,7 @@ parse_cmd_line() {
1971319713
[[ $? -eq 0 ]] && shift
1971419714
case $DEBUG in
1971519715
[0-6]) ;;
19716-
*) tmln_magenta_term "\nunrecognized debug value \"$1\", must be between 0..6" 1>&2
19716+
*) tmln_magenta "\nunrecognized debug value \"$1\", must be between 0..6" 1>&2
1971719717
help 1
1971819718
esac
1971919719
;;
@@ -19886,7 +19886,7 @@ parse_cmd_line() {
1988619886
no-rfc|no-iana) DISPLAY_CIPHERNAMES="openssl-only" ;;
1988719887
openssl) DISPLAY_CIPHERNAMES="openssl" ;;
1988819888
rfc|iana) DISPLAY_CIPHERNAMES="rfc" ;;
19889-
*) tmln_warning "\nmapping can only be \"no-openssl\", \"no-iana\"(\"no-rfc\"), \"openssl\" or \"iana\"(\"rfc\")"
19889+
*) tmln_warning "\nmapping can only be \"no-openssl\", \"no-iana\"(\"no-rfc\"), \"openssl\" or \"iana\"(\"rfc\")" 1>&2
1989019890
help 1 ;;
1989119891
esac
1989219892
;;

0 commit comments

Comments
 (0)