summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorThomas Perrot <thomas.perrot@bootlin.com>2021-07-19 17:04:44 +0300
committerTom Rini <trini@konsulko.com>2021-07-29 03:46:34 +0300
commit0eadb2b2da9ef7fccd39b22487a1de581f37330a (patch)
tree2d01c2fad0a474c4c806d269cfd211d665ee6b98 /lib
parent268f6ac1f95c1734e7eea369e93062e52c4aa04a (diff)
downloadu-boot-0eadb2b2da9ef7fccd39b22487a1de581f37330a.tar.xz
lib: rsa: rsa-verify: Fix a typo in a debug message
Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/rsa/rsa-verify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rsa/rsa-verify.c b/lib/rsa/rsa-verify.c
index bb8cc61d94..3840764e42 100644
--- a/lib/rsa/rsa-verify.c
+++ b/lib/rsa/rsa-verify.c
@@ -556,7 +556,7 @@ int rsa_verify(struct image_sign_info *info,
*/
if (info->checksum->checksum_len >
info->crypto->key_len) {
- debug("%s: invlaid checksum-algorithm %s for %s\n",
+ debug("%s: invalid checksum-algorithm %s for %s\n",
__func__, info->checksum->name, info->crypto->name);
return -EINVAL;
}