Skip to content

Commit 42e3f4e

Browse files
committed
"Resource" has only one "s" in English
1 parent e7619fa commit 42e3f4e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

testssl.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ declare -r ERR_OTHERCLIENT=248 # Other client problem
7979
declare -r ERR_DNSLOOKUP=247 # Problem with resolving IP addresses or names
8080
declare -r ERR_CONNECT=246 # Connectivity problem
8181
declare -r ERR_CLUELESS=245 # Weird state, either though user options or testssl.sh
82-
declare -r ERR_RESSOURCE=244 # Resources testssl.sh needs couldn't be read
82+
declare -r ERR_RESOURCE=244 # Resources testssl.sh needs couldn't be read
8383
declare -r ERR_CHILD=242 # Child received a signal from master
8484
declare -r ALLOK=0 # All is fine
8585

@@ -14695,7 +14695,7 @@ get_install_dir() {
1469514695
outln "Please note from 2.9dev on $PROG_NAME needs files in \"\$TESTSSL_INSTALL_DIR/etc/\" to function correctly."
1469614696
outln
1469714697
ignore_no_or_lame "Type \"yes\" to ignore this warning and proceed at your own risk" "yes"
14698-
[[ $? -ne 0 ]] && exit $ERR_RESSOURCE
14698+
[[ $? -ne 0 ]] && exit $ERR_RESOURCE
1469914699
fi
1470014700

1470114701
TLS_DATA_FILE="$TESTSSL_INSTALL_DIR/etc/tls_data.txt"
@@ -14704,7 +14704,7 @@ get_install_dir() {
1470414704
outln "Please note from 2.9dev on $PROG_NAME needs files in \"\$TESTSSL_INSTALL_DIR/etc/\" to function correctly."
1470514705
outln
1470614706
ignore_no_or_lame "Type \"yes\" to ignore this warning and proceed at your own risk" "yes"
14707-
[[ $? -ne 0 ]] && exit $ERR_RESSOURCE
14707+
[[ $? -ne 0 ]] && exit $ERR_RESOURCE
1470814708
else
1470914709
: # see #705, in a nutshell: not portable to initialize a global array inside a function. Thus it'll be done in main part below
1471014710
fi
@@ -17093,8 +17093,8 @@ parse_cmd_line() {
1709317093

1709417094
ADDITIONAL_CA_FILES="${ADDITIONAL_CA_FILES//,/ }"
1709517095
for fname in $ADDITIONAL_CA_FILES; do
17096-
[[ -s "$fname" ]] || fatal "CA file \"$fname\" does not exist" $ERR_RESSOURCE
17097-
grep -q "BEGIN CERTIFICATE" "$fname" || fatal "\"$fname\" is not CA file in PEM format" $ERR_RESSOURCE
17096+
[[ -s "$fname" ]] || fatal "CA file \"$fname\" does not exist" $ERR_RESOURCE
17097+
grep -q "BEGIN CERTIFICATE" "$fname" || fatal "\"$fname\" is not CA file in PEM format" $ERR_RESOURCE
1709817098
done
1709917099

1710017100
[[ "$DEBUG" -ge 5 ]] && debug_globals

0 commit comments

Comments
 (0)