Skip to content

Commit 1abbe11

Browse files
saschahauertyhicks
authored andcommitted
ecryptfs: Fix typo in message
ecryptfs_decrypt_page() issues a warning "Error encrypting extent". This should be "Error decrypting extent" instead. Fixes: 0216f7f ("eCryptfs: replace encrypt, decrypt, and inode size write") Signed-off-by: Sascha Hauer <[email protected]> Signed-off-by: Tyler Hicks <[email protected]>
1 parent 724fa86 commit 1abbe11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/ecryptfs/crypto.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ int ecryptfs_decrypt_page(struct page *page)
535535
rc = crypt_extent(crypt_stat, page, page,
536536
extent_offset, DECRYPT);
537537
if (rc) {
538-
printk(KERN_ERR "%s: Error encrypting extent; "
538+
printk(KERN_ERR "%s: Error decrypting extent; "
539539
"rc = [%d]\n", __func__, rc);
540540
goto out;
541541
}

0 commit comments

Comments
 (0)