typ0: Replace single TAB with SPACE

Signed-off-by: Richard T Bonhomme <tincantech@protonmail.com>
This commit is contained in:
Richard T Bonhomme 2022-09-24 18:05:16 +01:00
parent 4f9e32fc7c
commit 44d69ca2fe
No known key found for this signature in database
GPG Key ID: 2D767DB92FB6C246

View File

@ -1738,7 +1738,7 @@ Please update openssl-easyrsa.cnf to the latest official release."
# Print the last occurence of basicContraints in x509-types/ca
# If basicContraints not defined then bail
awkscript='/^[[:blank:]]*basicConstraints[[:blank:]]*=/ { bC=$0 }
END { if (length(bC) == 0 ) exit 1; print bC }'
END { if (length(bC) == 0 ) exit 1; print bC }'
basicConstraints="$(awk "$awkscript" "$ext_tmp")" || die "\
basicConstraints is not defined, cannot use 'pathlen'"
print "$basicConstraints, pathlen:$EASYRSA_SUBCA_LEN"