Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Feb 2026 12:11:08 +0000
From:      Gordon Bergling <gbe@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 1550f85824c2 - stable/14 - libsa/geli: Fix a typo in an error message
Message-ID:  <699af25c.3eae4.728eb543@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch stable/14 has been updated by gbe:

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

commit 1550f85824c23a135b1effc90fbfd6e67763eb7f
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: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);
 		}
 


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?699af25c.3eae4.728eb543>