read csr with empty subject

https://github.com/acmesh-official/acme.sh/issues/4024
This commit is contained in:
neil 2022-04-20 09:14:53 +08:00
parent c31027b284
commit 4d89ce5d50
1 changed files with 4 additions and 1 deletions

View File

@ -5543,10 +5543,13 @@ showcsr() {
_initpath
_csrsubj=$(_readSubjectFromCSR "$_csrfile")
if [ "$?" != "0" ] || [ -z "$_csrsubj" ]; then
if [ "$?" != "0" ]; then
_err "Can not read subject from csr: $_csrfile"
return 1
fi
if [ -z "$_csrsubj" ]; then
_info "The Subject is empty"
fi
_info "Subject=$_csrsubj"