summaryrefslogtreecommitdiff
path: root/common/vboot/vb21_lib.c
diff options
context:
space:
mode:
authorMary Ruthven <mruthven@chromium.org>2021-11-17 12:32:47 -0600
committerCommit Bot <commit-bot@chromium.org>2021-11-19 20:15:40 +0000
commit69825c3b1d57dd1c46723c8f69a80e24d70136e6 (patch)
tree738f1be10ce5a79229ba60fe8a7ec0cd112203dc /common/vboot/vb21_lib.c
parent22bef7dfb1421dcc0e70bbddeafde76efa2748e4 (diff)
downloadchrome-ec-69825c3b1d57dd1c46723c8f69a80e24d70136e6.tar.gz
coil: replace non-inclusive terms with "validity"
BUG=b:173227629 TEST=make buildall -j Change-Id: Iaf8028984cc58cc4108907fdba4ea4b38c43cf70 Signed-off-by: Mary Ruthven <mruthven@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3293250 Reviewed-by: Vadim Sukhomlinov <sukhomlinov@chromium.org>
Diffstat (limited to 'common/vboot/vb21_lib.c')
-rw-r--r--common/vboot/vb21_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/vboot/vb21_lib.c b/common/vboot/vb21_lib.c
index c85ecbbd75..5aac6e1f04 100644
--- a/common/vboot/vb21_lib.c
+++ b/common/vboot/vb21_lib.c
@@ -33,7 +33,7 @@ int vb21_is_signature_valid(const struct vb21_signature *sig,
return EC_ERROR_VBOOT_SIG_ALGORITHM;
if (key->hash_alg != sig->hash_alg)
return EC_ERROR_VBOOT_HASH_ALGORITHM;
- /* Sanity check signature offset and data size. */
+ /* Validity check signature offset and data size. */
if (sig->sig_offset < sizeof(*sig))
return EC_ERROR_VBOOT_SIG_OFFSET;
if (sig->sig_offset + RSANUMBYTES > CONFIG_RW_SIG_SIZE)