diff --git a/easyrsa3/easyrsa b/easyrsa3/easyrsa index 4075d05..feffbe7 100755 --- a/easyrsa3/easyrsa +++ b/easyrsa3/easyrsa @@ -1416,14 +1416,13 @@ Run easyrsa without commands for usage and command help." shift case "$crl_reason" in - unspecified | \ - keyCompromise |\ - CACompromise | \ - affiliationChanged | \ - superseded | \ - cessationOfOperation | \ - certificateHold ) : # ok - ;; + unspecified) : ;; + keyCompromise) : ;; + CACompromise) : ;; + affiliationChanged) : ;; + superseded) : ;; + cessationOfOperation) : ;; + certificateHold) : ;; *) die "Illegal reason: $crl_reason" esac else @@ -1811,14 +1810,13 @@ Run easyrsa without commands for usage and command help." shift case "$crl_reason" in - unspecified | \ - keyCompromise |\ - CACompromise | \ - affiliationChanged | \ - superseded | \ - cessationOfOperation | \ - certificateHold ) : # ok - ;; + unspecified) : ;; + keyCompromise) : ;; + CACompromise) : ;; + affiliationChanged) : ;; + superseded) : ;; + cessationOfOperation) : ;; + certificateHold) : ;; *) die "Illegal reason: $crl_reason" esac else