summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland Vet <RlndVt@protonmail.com>2024-02-20 19:49:50 +0100
committerRoland Vet <RlndVt@protonmail.com>2024-02-22 21:12:49 +0100
commitceb259b2a331baf3e5dd45847eec85c3f0ddd520 (patch)
tree9c02df6e327380b8841484206285efc894c44a8f
parent46ed72461fe376dc92029dfb3272de18ce73d669 (diff)
Typo
Signed-off-by: Roland Vet <RlndVt@protonmail.com>
-rw-r--r--libbcachefs/bcachefs_format.h2
-rw-r--r--src/key.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/libbcachefs/bcachefs_format.h b/libbcachefs/bcachefs_format.h
index bff8750a..9f45f833 100644
--- a/libbcachefs/bcachefs_format.h
+++ b/libbcachefs/bcachefs_format.h
@@ -653,7 +653,7 @@ struct bch_encrypted_key {
/*
* If this field is present in the superblock, it stores an encryption key which
- * is used encrypt all other data/metadata. The key will normally be encrypted
+ * is used to encrypt all other data/metadata. The key will normally be encrypted
* with the key userspace provides, but if encryption has been turned off we'll
* just store the master key unencrypted in the superblock so we can access the
* previously encrypted data.
diff --git a/src/key.rs b/src/key.rs
index c36fb28d..543aaff5 100644
--- a/src/key.rs
+++ b/src/key.rs
@@ -65,7 +65,7 @@ fn check_for_key(key_name: &std::ffi::CStr) -> anyhow::Result<bool> {
let key_id = unsafe { keyctl_search(keyutils::KEY_SPEC_USER_KEYRING, key_type, key_name, 0) };
if key_id > 0 {
- info!("Key has became available");
+ info!("Key has become available");
Ok(true)
} else {
match errno::errno().0 {