diff options
author | tb <> | 2024-12-20 00:32:15 +0000 |
---|---|---|
committer | tb <> | 2024-12-20 00:32:15 +0000 |
commit | adb9bd5a09910dcd30e98648834c3560f8fa1659 (patch) | |
tree | 6e2101e34bee2b30b7f1f9126a7af3af028d3105 | |
parent | b1838090ad769162b2ea08f33254c67d084bb22f (diff) | |
download | openbsd-adb9bd5a09910dcd30e98648834c3560f8fa1659.tar.gz openbsd-adb9bd5a09910dcd30e98648834c3560f8fa1659.tar.bz2 openbsd-adb9bd5a09910dcd30e98648834c3560f8fa1659.zip |
cant't -> can't
(the mystery of spotting typos right after commit strikes again)
10 files changed, 20 insertions, 20 deletions
diff --git a/src/regress/lib/libcrypto/mlkem/mlkem1024_decap_tests.c b/src/regress/lib/libcrypto/mlkem/mlkem1024_decap_tests.c index c75b2c7ca8..7d76a625b0 100644 --- a/src/regress/lib/libcrypto/mlkem/mlkem1024_decap_tests.c +++ b/src/regress/lib/libcrypto/mlkem/mlkem1024_decap_tests.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: mlkem1024_decap_tests.c,v 1.3 2024/12/20 00:07:12 tb Exp $ */ | 1 | /* $OpenBSD: mlkem1024_decap_tests.c,v 1.4 2024/12/20 00:32:15 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2024 Google Inc. | 3 | * Copyright (c) 2024 Google Inc. |
4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> | 4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> |
@@ -124,7 +124,7 @@ main(int argc, char **argv) | |||
124 | test = argv[1]; | 124 | test = argv[1]; |
125 | 125 | ||
126 | if ((fp = fopen(test, "r")) == NULL) | 126 | if ((fp = fopen(test, "r")) == NULL) |
127 | err(1, "cant't open test file"); | 127 | err(1, "can't open test file"); |
128 | 128 | ||
129 | state = S_COMMENT; | 129 | state = S_COMMENT; |
130 | line = 0; | 130 | line = 0; |
diff --git a/src/regress/lib/libcrypto/mlkem/mlkem1024_encap_tests.c b/src/regress/lib/libcrypto/mlkem/mlkem1024_encap_tests.c index 06b00a4b75..6459566ff0 100644 --- a/src/regress/lib/libcrypto/mlkem/mlkem1024_encap_tests.c +++ b/src/regress/lib/libcrypto/mlkem/mlkem1024_encap_tests.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: mlkem1024_encap_tests.c,v 1.3 2024/12/20 00:07:12 tb Exp $ */ | 1 | /* $OpenBSD: mlkem1024_encap_tests.c,v 1.4 2024/12/20 00:32:15 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2024 Google Inc. | 3 | * Copyright (c) 2024 Google Inc. |
4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> | 4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> |
@@ -133,7 +133,7 @@ main(int argc, char **argv) | |||
133 | line = 0; | 133 | line = 0; |
134 | 134 | ||
135 | if ((fp = fopen(test, "r")) == NULL) | 135 | if ((fp = fopen(test, "r")) == NULL) |
136 | err(1, "cant't open test file"); | 136 | err(1, "can't open test file"); |
137 | 137 | ||
138 | state = S_COMMENT; | 138 | state = S_COMMENT; |
139 | line = 0; | 139 | line = 0; |
diff --git a/src/regress/lib/libcrypto/mlkem/mlkem1024_keygen_tests.c b/src/regress/lib/libcrypto/mlkem/mlkem1024_keygen_tests.c index 559a6da36d..442475bc82 100644 --- a/src/regress/lib/libcrypto/mlkem/mlkem1024_keygen_tests.c +++ b/src/regress/lib/libcrypto/mlkem/mlkem1024_keygen_tests.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: mlkem1024_keygen_tests.c,v 1.5 2024/12/20 00:07:12 tb Exp $ */ | 1 | /* $OpenBSD: mlkem1024_keygen_tests.c,v 1.6 2024/12/20 00:32:15 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2024 Google Inc. | 3 | * Copyright (c) 2024 Google Inc. |
4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> | 4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> |
@@ -125,7 +125,7 @@ main(int argc, char **argv) | |||
125 | test = argv[1]; | 125 | test = argv[1]; |
126 | 126 | ||
127 | if ((fp = fopen(test, "r")) == NULL) | 127 | if ((fp = fopen(test, "r")) == NULL) |
128 | err(1, "cant't open test file"); | 128 | err(1, "can't open test file"); |
129 | 129 | ||
130 | state = S_COMMENT; | 130 | state = S_COMMENT; |
131 | line = 0; | 131 | line = 0; |
diff --git a/src/regress/lib/libcrypto/mlkem/mlkem1024_nist_decap_tests.c b/src/regress/lib/libcrypto/mlkem/mlkem1024_nist_decap_tests.c index ba05de9f05..929a4b21b1 100644 --- a/src/regress/lib/libcrypto/mlkem/mlkem1024_nist_decap_tests.c +++ b/src/regress/lib/libcrypto/mlkem/mlkem1024_nist_decap_tests.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: mlkem1024_nist_decap_tests.c,v 1.3 2024/12/20 00:07:12 tb Exp $ */ | 1 | /* $OpenBSD: mlkem1024_nist_decap_tests.c,v 1.4 2024/12/20 00:32:15 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2024 Google Inc. | 3 | * Copyright (c) 2024 Google Inc. |
4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> | 4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> |
@@ -113,7 +113,7 @@ main(int argc, char **argv) | |||
113 | test = argv[1]; | 113 | test = argv[1]; |
114 | 114 | ||
115 | if ((fp = fopen(test, "r")) == NULL) | 115 | if ((fp = fopen(test, "r")) == NULL) |
116 | err(1, "cant't open test file"); | 116 | err(1, "can't open test file"); |
117 | 117 | ||
118 | if ((len = getline(&buf, &buflen, fp)) == -1) | 118 | if ((len = getline(&buf, &buflen, fp)) == -1) |
119 | err(1, "failed to read instruction line"); | 119 | err(1, "failed to read instruction line"); |
diff --git a/src/regress/lib/libcrypto/mlkem/mlkem1024_nist_keygen_tests.c b/src/regress/lib/libcrypto/mlkem/mlkem1024_nist_keygen_tests.c index e84f7dafc6..5ef5ff0caa 100644 --- a/src/regress/lib/libcrypto/mlkem/mlkem1024_nist_keygen_tests.c +++ b/src/regress/lib/libcrypto/mlkem/mlkem1024_nist_keygen_tests.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: mlkem1024_nist_keygen_tests.c,v 1.4 2024/12/20 00:07:12 tb Exp $ */ | 1 | /* $OpenBSD: mlkem1024_nist_keygen_tests.c,v 1.5 2024/12/20 00:32:15 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2024 Google Inc. | 3 | * Copyright (c) 2024 Google Inc. |
4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> | 4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> |
@@ -137,7 +137,7 @@ main(int argc, char **argv) | |||
137 | test = argv[1]; | 137 | test = argv[1]; |
138 | 138 | ||
139 | if ((fp = fopen(test, "r")) == NULL) | 139 | if ((fp = fopen(test, "r")) == NULL) |
140 | err(1, "cant't open test file"); | 140 | err(1, "can't open test file"); |
141 | 141 | ||
142 | state = S_Z; | 142 | state = S_Z; |
143 | line = 0; | 143 | line = 0; |
diff --git a/src/regress/lib/libcrypto/mlkem/mlkem768_decap_tests.c b/src/regress/lib/libcrypto/mlkem/mlkem768_decap_tests.c index a88e487494..a58f005644 100644 --- a/src/regress/lib/libcrypto/mlkem/mlkem768_decap_tests.c +++ b/src/regress/lib/libcrypto/mlkem/mlkem768_decap_tests.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: mlkem768_decap_tests.c,v 1.3 2024/12/20 00:07:12 tb Exp $ */ | 1 | /* $OpenBSD: mlkem768_decap_tests.c,v 1.4 2024/12/20 00:32:15 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2024 Google Inc. | 3 | * Copyright (c) 2024 Google Inc. |
4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> | 4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> |
@@ -124,7 +124,7 @@ main(int argc, char **argv) | |||
124 | test = argv[1]; | 124 | test = argv[1]; |
125 | 125 | ||
126 | if ((fp = fopen(test, "r")) == NULL) | 126 | if ((fp = fopen(test, "r")) == NULL) |
127 | err(1, "cant't open test file"); | 127 | err(1, "can't open test file"); |
128 | 128 | ||
129 | state = S_COMMENT; | 129 | state = S_COMMENT; |
130 | line = 0; | 130 | line = 0; |
diff --git a/src/regress/lib/libcrypto/mlkem/mlkem768_encap_tests.c b/src/regress/lib/libcrypto/mlkem/mlkem768_encap_tests.c index 55e3fe66bb..e2123f8de5 100644 --- a/src/regress/lib/libcrypto/mlkem/mlkem768_encap_tests.c +++ b/src/regress/lib/libcrypto/mlkem/mlkem768_encap_tests.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: mlkem768_encap_tests.c,v 1.3 2024/12/20 00:07:12 tb Exp $ */ | 1 | /* $OpenBSD: mlkem768_encap_tests.c,v 1.4 2024/12/20 00:32:15 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2024 Google Inc. | 3 | * Copyright (c) 2024 Google Inc. |
4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> | 4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> |
@@ -133,7 +133,7 @@ main(int argc, char **argv) | |||
133 | line = 0; | 133 | line = 0; |
134 | 134 | ||
135 | if ((fp = fopen(test, "r")) == NULL) | 135 | if ((fp = fopen(test, "r")) == NULL) |
136 | err(1, "cant't open test file"); | 136 | err(1, "can't open test file"); |
137 | 137 | ||
138 | state = S_COMMENT; | 138 | state = S_COMMENT; |
139 | line = 0; | 139 | line = 0; |
diff --git a/src/regress/lib/libcrypto/mlkem/mlkem768_keygen_tests.c b/src/regress/lib/libcrypto/mlkem/mlkem768_keygen_tests.c index be1aff3d04..3f8012c4e6 100644 --- a/src/regress/lib/libcrypto/mlkem/mlkem768_keygen_tests.c +++ b/src/regress/lib/libcrypto/mlkem/mlkem768_keygen_tests.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: mlkem768_keygen_tests.c,v 1.5 2024/12/20 00:07:12 tb Exp $ */ | 1 | /* $OpenBSD: mlkem768_keygen_tests.c,v 1.6 2024/12/20 00:32:15 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2024 Google Inc. | 3 | * Copyright (c) 2024 Google Inc. |
4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> | 4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> |
@@ -125,7 +125,7 @@ main(int argc, char **argv) | |||
125 | test = argv[1]; | 125 | test = argv[1]; |
126 | 126 | ||
127 | if ((fp = fopen(test, "r")) == NULL) | 127 | if ((fp = fopen(test, "r")) == NULL) |
128 | err(1, "cant't open test file"); | 128 | err(1, "can't open test file"); |
129 | 129 | ||
130 | state = S_COMMENT; | 130 | state = S_COMMENT; |
131 | line = 0; | 131 | line = 0; |
diff --git a/src/regress/lib/libcrypto/mlkem/mlkem768_nist_decap_tests.c b/src/regress/lib/libcrypto/mlkem/mlkem768_nist_decap_tests.c index c72ad5c388..9de8958c39 100644 --- a/src/regress/lib/libcrypto/mlkem/mlkem768_nist_decap_tests.c +++ b/src/regress/lib/libcrypto/mlkem/mlkem768_nist_decap_tests.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: mlkem768_nist_decap_tests.c,v 1.3 2024/12/20 00:07:12 tb Exp $ */ | 1 | /* $OpenBSD: mlkem768_nist_decap_tests.c,v 1.4 2024/12/20 00:32:15 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2024 Google Inc. | 3 | * Copyright (c) 2024 Google Inc. |
4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> | 4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> |
@@ -113,7 +113,7 @@ main(int argc, char **argv) | |||
113 | test = argv[1]; | 113 | test = argv[1]; |
114 | 114 | ||
115 | if ((fp = fopen(test, "r")) == NULL) | 115 | if ((fp = fopen(test, "r")) == NULL) |
116 | err(1, "cant't open test file"); | 116 | err(1, "can't open test file"); |
117 | 117 | ||
118 | if ((len = getline(&buf, &buflen, fp)) == -1) | 118 | if ((len = getline(&buf, &buflen, fp)) == -1) |
119 | err(1, "failed to read instruction line"); | 119 | err(1, "failed to read instruction line"); |
diff --git a/src/regress/lib/libcrypto/mlkem/mlkem768_nist_keygen_tests.c b/src/regress/lib/libcrypto/mlkem/mlkem768_nist_keygen_tests.c index 1f58c4c699..ae0e018e69 100644 --- a/src/regress/lib/libcrypto/mlkem/mlkem768_nist_keygen_tests.c +++ b/src/regress/lib/libcrypto/mlkem/mlkem768_nist_keygen_tests.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: mlkem768_nist_keygen_tests.c,v 1.4 2024/12/20 00:07:12 tb Exp $ */ | 1 | /* $OpenBSD: mlkem768_nist_keygen_tests.c,v 1.5 2024/12/20 00:32:15 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2024 Google Inc. | 3 | * Copyright (c) 2024 Google Inc. |
4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> | 4 | * Copyright (c) 2024 Bob Beck <beck@obtuse.com> |
@@ -137,7 +137,7 @@ main(int argc, char **argv) | |||
137 | test = argv[1]; | 137 | test = argv[1]; |
138 | 138 | ||
139 | if ((fp = fopen(test, "r")) == NULL) | 139 | if ((fp = fopen(test, "r")) == NULL) |
140 | err(1, "cant't open test file"); | 140 | err(1, "can't open test file"); |
141 | 141 | ||
142 | state = S_Z; | 142 | state = S_Z; |
143 | line = 0; | 143 | line = 0; |