From 3beeedcaf077e88f91a116a66856e93e81a059c1 Mon Sep 17 00:00:00 2001 From: Dirk Date: Thu, 13 Jun 2024 15:19:10 +0200 Subject: [PATCH] Fix spelling issues in #2502 --- .github/workflows/codespell.yml | 2 +- t/01_testssl_banner.t | 2 +- t/02_clientsim_txt_parsable.t | 2 +- testssl.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 44dd038..87d320a 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -12,5 +12,5 @@ jobs: - uses: actions/checkout@v3 - uses: codespell-project/actions-codespell@master with: - skip: ca_hashes.txt,tls_data.txt,*.pem,OPENSSL-LICENSE.txt,.git,CREDITS.md,openssl.cnf + skip: ca_hashes.txt,tls_data.txt,*.pem,OPENSSL-LICENSE.txt,.git,CREDITS.md,openssl.cnf,*diff ignore_words_list: borken,gost,ciph,ba,bloc,isnt,chello,fo,alle,nmake,anull diff --git a/t/01_testssl_banner.t b/t/01_testssl_banner.t index f68d6df..cd49961 100755 --- a/t/01_testssl_banner.t +++ b/t/01_testssl_banner.t @@ -1,6 +1,6 @@ #!/usr/bin/env perl -# Basics: is there a synatx error where already bash hiccups on? +# Basics: is there a syntax error where already bash hiccups on? # --banner is equal to --version use strict; diff --git a/t/02_clientsim_txt_parsable.t b/t/02_clientsim_txt_parsable.t index f947db0..b6bfe8c 100755 --- a/t/02_clientsim_txt_parsable.t +++ b/t/02_clientsim_txt_parsable.t @@ -1,7 +1,7 @@ #!/usr/bin/env perl # Just a functional test, whether ~/etc/client-simulation.txt -# doesn't have any synatx errors +# doesn't have any syntax errors use strict; use Test::More; diff --git a/testssl.sh b/testssl.sh index 3bb7e94..53e8cd6 100755 --- a/testssl.sh +++ b/testssl.sh @@ -1337,7 +1337,7 @@ get_cipher() { # Esepcially with bash 3.2 (Mac OS X) and when on the server side binary chars # are returned, see https://stackoverflow.com/questions/7427262/how-to-read-a-file-into-a-variable-in-shell#22607352 # and https://github.com/drwetter/testssl.sh/issues/1292 - # Performance measurements showed no to barely measureable penalty (1s displayed in 9 tries). + # Performance measurements showed no to barely measurable penalty (1s displayed in 9 tries). if [[ "$server_hello" =~ Cipher\ *:\ ([A-Z0-9]+-[A-Za-z0-9\-]+|TLS_[A-Za-z0-9_]+|SSL_[A-Za-z0-9_]+) ]]; then cipher="${BASH_REMATCH##* }"