aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2026-02-07 05:20:16 +0000
committerGordon Bergling <gbe@FreeBSD.org>2026-02-07 05:20:16 +0000
commitfa567fe7c537950fe48e35fa3b0827af4a45ec57 (patch)
tree5ba479fa5eec7b6aa12fb7cc3f10898c23033cd8
parentdeb3c9dc54c72efcb19fd4c55449ba08f07cba2d (diff)
libsa/geli: Fix a typo in an error message
- s/crypo/crypto/ MFC after: 5 days
-rw-r--r--stand/libsa/geli/geliboot_crypto.c2
1 files changed, 1 insertions, 1 deletions
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);
}