From 60f3fc2728c53a655ee8f390a2394e6f6702f0ad Mon Sep 17 00:00:00 2001 From: Richard T Bonhomme Date: Tue, 19 Apr 2022 15:20:54 +0100 Subject: [PATCH] Quote $cert_ext_key_usage in renew() 'case' is "immune" to standard word splitting and globbing but code-style now demands that 'case' does not get treated differently. Signed-off-by: Richard T Bonhomme --- easyrsa3/easyrsa | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easyrsa3/easyrsa b/easyrsa3/easyrsa index ac64df9..7187405 100755 --- a/easyrsa3/easyrsa +++ b/easyrsa3/easyrsa @@ -1607,7 +1607,7 @@ Renewal not allowed." sed -n "/X509v3 Extended Key Usage:/{n;s/^ *//g;p;}" ) - case $cert_ext_key_usage in + case "$cert_ext_key_usage" in "TLS Web Client Authentication") cert_type=client ;;