fix borken case statement, ((ret++) doesn't seem to work

This commit is contained in:
Dirk 2018-02-11 14:04:45 +01:00
parent 5862a90319
commit 619dabdb38
1 changed files with 2 additions and 1 deletions

View File

@ -6607,7 +6607,8 @@ certificate_info() {
*ecdsa*|*ecPublicKey) out "EC ";; *ecdsa*|*ecPublicKey) out "EC ";;
*GOST*|*gost*) out "GOST ";; *GOST*|*gost*) out "GOST ";;
*dh*|*DH*) out "DH " ;; *dh*|*DH*) out "DH " ;;
*) pr_fixme "don't know $cert_key_algo "; ((ret++);; *) pr_fixme "don't know $cert_key_algo "
let ret++ ;;
esac esac
# https://tools.ietf.org/html/rfc4492, http://www.keylength.com/en/compare/ # https://tools.ietf.org/html/rfc4492, http://www.keylength.com/en/compare/
# http://infoscience.epfl.ch/record/164526/files/NPDF-22.pdf # http://infoscience.epfl.ch/record/164526/files/NPDF-22.pdf