mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-08 23:41:45 +00:00
read csr with empty subject
https://github.com/acmesh-official/acme.sh/issues/4024
This commit is contained in:
parent
c31027b284
commit
4d89ce5d50
5
acme.sh
5
acme.sh
@ -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"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user