diff options
author | Colin Ian King <colin.king@canonical.com> | 2016-09-27 05:18:02 -0700 |
---|---|---|
committer | Tyler Hicks <tyhicks@canonical.com> | 2017-11-04 22:16:39 +0000 |
commit | 0996b67df6c1354f2df09c33ac652c37e2e2471f (patch) | |
tree | 4aa4bbaf9ed6cfffd2c58d991db7499d0f6c7938 /fs/ecryptfs/keystore.c | |
parent | 0b07194bb55ed836c2cc7c22e866b87a14681984 (diff) | |
download | op-kernel-dev-0996b67df6c1354f2df09c33ac652c37e2e2471f.zip op-kernel-dev-0996b67df6c1354f2df09c33ac652c37e2e2471f.tar.gz |
ecryptfs: add missing \n to end of various error messages
Trival fix, some error messages are missing a \n, so add it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Tyler Hicks <tyhicks@canonical.com>
Diffstat (limited to 'fs/ecryptfs/keystore.c')
-rw-r--r-- | fs/ecryptfs/keystore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ecryptfs/keystore.c b/fs/ecryptfs/keystore.c index fa218cd..3eb1420 100644 --- a/fs/ecryptfs/keystore.c +++ b/fs/ecryptfs/keystore.c @@ -1333,7 +1333,7 @@ parse_tag_1_packet(struct ecryptfs_crypt_stat *crypt_stat, if ((*new_auth_tok)->session_key.encrypted_key_size > ECRYPTFS_MAX_ENCRYPTED_KEY_BYTES) { printk(KERN_WARNING "Tag 1 packet contains key larger " - "than ECRYPTFS_MAX_ENCRYPTED_KEY_BYTES"); + "than ECRYPTFS_MAX_ENCRYPTED_KEY_BYTES\n"); rc = -EINVAL; goto out; } |