The branch stable/14 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=1550f85824c23a135b1effc90fbfd6e67763eb7f
commit 1550f85824c23a135b1effc90fbfd6e67763eb7f Author: Gordon Bergling <[email protected]> AuthorDate: 2026-02-07 05:20:16 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2026-02-22 12:10:42 +0000 libsa/geli: Fix a typo in an error message - s/crypo/crypto/ (cherry picked from commit fa567fe7c537950fe48e35fa3b0827af4a45ec57) --- 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); }
