Mask error when no $MAPPING_FILE_RFC

Redirect error output to $ERRFILE if $MAPPING_FILE_RFC is missing.
This commit is contained in:
David Cooper 2016-06-08 12:07:23 -04:00
parent 0c146ef7a1
commit 5e3d4d127c
1 changed files with 2 additions and 2 deletions

View File

@ -1455,7 +1455,7 @@ openssl2rfc() {
hexcode=$($OPENSSL ciphers -V "$1" 2>>$ERRFILE | head -1 | awk '{ print $1 }') hexcode=$($OPENSSL ciphers -V "$1" 2>>$ERRFILE | head -1 | awk '{ print $1 }')
[[ -z "$hexcode" ]] && return 0 [[ -z "$hexcode" ]] && return 0
normalize_ciphercode $hexcode normalize_ciphercode $hexcode
rfcname="$(strip_spaces $(grep -iw "$HEXC" "$MAPPING_FILE_RFC" | sed -e 's/^.*TLS/TLS/' -e 's/^.*SSL/SSL/'))" rfcname="$(strip_spaces $(grep -iw "$HEXC" "$MAPPING_FILE_RFC" 2>>$ERRFILE | sed -e 's/^.*TLS/TLS/' -e 's/^.*SSL/SSL/'))"
[[ -n "$rfcname" ]] && out "$rfcname" [[ -n "$rfcname" ]] && out "$rfcname"
return 0 return 0
} }
@ -1464,7 +1464,7 @@ rfc2openssl() {
local hexcode ossl_hexcode ossl_name local hexcode ossl_hexcode ossl_name
local -i len local -i len
hexcode=$(grep -iw "$1" "$MAPPING_FILE_RFC" | head -1 | awk '{ print $1 }') hexcode=$(grep -iw "$1" "$MAPPING_FILE_RFC" 2>>$ERRFILE | head -1 | awk '{ print $1 }')
[[ -z "$hexcode" ]] && return 0 [[ -z "$hexcode" ]] && return 0
len=${#hexcode} len=${#hexcode}
case $len in case $len in