git: fa567fe7c537 - main - libsa/geli: Fix a typo in an error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 07 Feb 2026 05:20:36 UTC
The branch main has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=fa567fe7c537950fe48e35fa3b0827af4a45ec57
commit fa567fe7c537950fe48e35fa3b0827af4a45ec57
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2026-02-07 05:20:16 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2026-02-07 05:20:16 +0000
libsa/geli: Fix a typo in an error message
- s/crypo/crypto/
MFC after: 5 days
---
stand/libsa/geli/geliboot_crypto.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/stand/libsa/geli/geliboot_crypto.c b/stand/libsa/geli/geliboot_crypto.c
index 6cb47d5572c3..a7780471d090 100644
--- a/stand/libsa/geli/geliboot_crypto.c
+++ b/stand/libsa/geli/geliboot_crypto.c
@@ -47,7 +47,7 @@ geliboot_crypt(u_int algo, geli_op_t enc, u_char *data, size_t datasize,
err = rijndael_makeKey(&aeskey, !enc, keysize,
(const char *)key);
if (err < 0) {
- printf("Failed to setup crypo keys: %d\n", err);
+ printf("Failed to setup crypto keys: %d\n", err);
return (err);
}