diff options
author | Cong Ding <dinggnu@gmail.com> | 2012-12-07 22:21:56 +0000 |
---|---|---|
committer | Tyler Hicks <tyhicks@canonical.com> | 2012-12-18 10:10:13 -0600 |
commit | 37028758f92d0a3eb74bcfbecf6bc477072e9e28 (patch) | |
tree | 4596c9f0a276229f40b270bde8b56cc89a1d2c37 /fs/ecryptfs | |
parent | 8bbca57cff7f1b1fd046eebd1e9497a00161c2c1 (diff) | |
download | kernel_goldelico_gta04-37028758f92d0a3eb74bcfbecf6bc477072e9e28.zip kernel_goldelico_gta04-37028758f92d0a3eb74bcfbecf6bc477072e9e28.tar.gz kernel_goldelico_gta04-37028758f92d0a3eb74bcfbecf6bc477072e9e28.tar.bz2 |
fs/ecryptfs/crypto.c: make ecryptfs_encode_for_filename() static
the function ecryptfs_encode_for_filename() is only used in this file
Signed-off-by: Cong Ding <dinggnu@gmail.com>
Signed-off-by: Tyler Hicks <tyhicks@canonical.com>
Diffstat (limited to 'fs/ecryptfs')
-rw-r--r-- | fs/ecryptfs/crypto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c index ea99312..a7b0c2d 100644 --- a/fs/ecryptfs/crypto.c +++ b/fs/ecryptfs/crypto.c @@ -1935,7 +1935,7 @@ static const unsigned char filename_rev_map[256] = { * @src: Source location for the filename to encode * @src_size: Size of the source in bytes */ -void ecryptfs_encode_for_filename(unsigned char *dst, size_t *dst_size, +static void ecryptfs_encode_for_filename(unsigned char *dst, size_t *dst_size, unsigned char *src, size_t src_size) { size_t num_blocks; |