git: c975f3b3a5e2 - stable/15 - libsa/geli: Fix a typo in an error message

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Sun, 22 Feb 2026 12:10:19 UTC
The branch stable/15 has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=c975f3b3a5e286c1bc4cad60f72f1da9ea813582

commit c975f3b3a5e286c1bc4cad60f72f1da9ea813582
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2026-02-07 05:20:16 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2026-02-22 12:08:38 +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);
 		}