Skip to content

Commit 3beeedc

Browse files
committed
Fix spelling issues in #2502
1 parent 9c2bfff commit 3beeedc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- uses: codespell-project/actions-codespell@master
1414
with:
15-
skip: ca_hashes.txt,tls_data.txt,*.pem,OPENSSL-LICENSE.txt,.git,CREDITS.md,openssl.cnf
15+
skip: ca_hashes.txt,tls_data.txt,*.pem,OPENSSL-LICENSE.txt,.git,CREDITS.md,openssl.cnf,*diff
1616
ignore_words_list: borken,gost,ciph,ba,bloc,isnt,chello,fo,alle,nmake,anull

t/01_testssl_banner.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env perl
22

3-
# Basics: is there a synatx error where already bash hiccups on?
3+
# Basics: is there a syntax error where already bash hiccups on?
44
# --banner is equal to --version
55

66
use strict;

t/02_clientsim_txt_parsable.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env perl
22

33
# Just a functional test, whether ~/etc/client-simulation.txt
4-
# doesn't have any synatx errors
4+
# doesn't have any syntax errors
55

66
use strict;
77
use Test::More;

testssl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1337,7 +1337,7 @@ get_cipher() {
13371337
# Esepcially with bash 3.2 (Mac OS X) and when on the server side binary chars
13381338
# are returned, see https://stackoverflow.com/questions/7427262/how-to-read-a-file-into-a-variable-in-shell#22607352
13391339
# and https://github.com/drwetter/testssl.sh/issues/1292
1340-
# Performance measurements showed no to barely measureable penalty (1s displayed in 9 tries).
1340+
# Performance measurements showed no to barely measurable penalty (1s displayed in 9 tries).
13411341

13421342
if [[ "$server_hello" =~ Cipher\ *:\ ([A-Z0-9]+-[A-Za-z0-9\-]+|TLS_[A-Za-z0-9_]+|SSL_[A-Za-z0-9_]+) ]]; then
13431343
cipher="${BASH_REMATCH##* }"

0 commit comments

Comments
 (0)