summaryrefslogtreecommitdiff
path: root/fs/ecryptfs
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2024-11-08 11:25:09 +0000
committerChristian Brauner <brauner@kernel.org>2024-11-15 11:51:29 +0100
commit7ff3e945a35ac472c6783403eae1e7519d96f1cf (patch)
tree816a5d2b5e7c3270d9fa4c953bd0f5f9e2a45cef /fs/ecryptfs
parent2cc789654a36e2561c2c96332a684e351b10f13f (diff)
ecryptfs: Fix spelling mistake "validationg" -> "validating"
There is a spelling mistake in an error message literal string. Fix it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Link: https://lore.kernel.org/r/20241108112509.109891-1-colin.i.king@gmail.com Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/ecryptfs')
-rw-r--r--fs/ecryptfs/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ecryptfs/main.c b/fs/ecryptfs/main.c
index c9aa80e534c2..8dd1d7189c3b 100644
--- a/fs/ecryptfs/main.c
+++ b/fs/ecryptfs/main.c
@@ -451,7 +451,7 @@ static int ecryptfs_get_tree(struct fs_context *fc)
mount_crypt_stat = &sbi->mount_crypt_stat;
rc = ecryptfs_validate_options(fc);
if (rc) {
- err = "Error validationg options";
+ err = "Error validating options";
goto out;
}