From: Colin Ian King Date: Fri, 8 Nov 2024 11:25:09 +0000 (+0000) Subject: ecryptfs: Fix spelling mistake "validationg" -> "validating" X-Git-Tag: v6.13-rc1~73^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ff3e945a35ac472c6783403eae1e7519d96f1cf;p=thirdparty%2Flinux.git 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 Link: https://lore.kernel.org/r/20241108112509.109891-1-colin.i.king@gmail.com Signed-off-by: Christian Brauner --- diff --git a/fs/ecryptfs/main.c b/fs/ecryptfs/main.c index c9aa80e534c24..8dd1d7189c3b2 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; }