diff options
author | Steve French <sfrench@us.ibm.com> | 2006-09-28 19:43:08 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2006-09-28 19:43:08 +0000 |
commit | 2cd646a2d1d5e0e46aa4bb55b1847b0cb35bd855 (patch) | |
tree | 06be4e598e93e5426f32837386187395e592bb0a /fs/cifs/md5.c | |
parent | 1bd5bbcb6531776a8f73e2cc6287fc4dd542e1c7 (diff) | |
download | linux-3.10-2cd646a2d1d5e0e46aa4bb55b1847b0cb35bd855.tar.gz linux-3.10-2cd646a2d1d5e0e46aa4bb55b1847b0cb35bd855.tar.bz2 linux-3.10-2cd646a2d1d5e0e46aa4bb55b1847b0cb35bd855.zip |
[CIFS] Remove static and unused symbols
Most cases of the ones found by Shaggy by
"make namespacecheck"
could be removed or made static
Ack: Dave Kleikamp <shaggy@austin.ibm.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/md5.c')
-rw-r--r-- | fs/cifs/md5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/md5.c b/fs/cifs/md5.c index 7aa23490541..273aa0383f2 100644 --- a/fs/cifs/md5.c +++ b/fs/cifs/md5.c @@ -255,7 +255,7 @@ MD5Transform(__u32 buf[4], __u32 const in[16]) /*********************************************************************** the rfc 2104 version of hmac_md5 initialisation. ***********************************************************************/ -void +static void hmac_md5_init_rfc2104(unsigned char *key, int key_len, struct HMACMD5Context *ctx) { @@ -350,7 +350,7 @@ hmac_md5_final(unsigned char *digest, struct HMACMD5Context *ctx) single function to calculate an HMAC MD5 digest from data. use the microsoft hmacmd5 init method because the key is 16 bytes. ************************************************************/ -void +static void hmac_md5(unsigned char key[16], unsigned char *data, int data_len, unsigned char *digest) { |