diff options
author | Steve French <sfrench@us.ibm.com> | 2006-09-28 16:52:08 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2006-09-28 16:52:08 -0400 |
commit | a3ab41f10e2f5087e515da358680c88dd61d4832 (patch) | |
tree | 90b6ff716a2de8ab976e21746910aa655f318ead /fs/cifs | |
parent | e10847ed499cb86bf8ce12f3a686be8a98f8e140 (diff) |
[CIFS] Fix build break ifdef in wrong place
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/md5.c b/fs/cifs/md5.c index e6a2097d836b..ccebf9b7eb86 100644 --- a/fs/cifs/md5.c +++ b/fs/cifs/md5.c | |||
@@ -335,7 +335,6 @@ hmac_md5_update(const unsigned char *text, int text_len, | |||
335 | /*********************************************************************** | 335 | /*********************************************************************** |
336 | finish off hmac_md5 "inner" buffer and generate outer one. | 336 | finish off hmac_md5 "inner" buffer and generate outer one. |
337 | ***********************************************************************/ | 337 | ***********************************************************************/ |
338 | #if 0 /* currently unused */ | ||
339 | void | 338 | void |
340 | hmac_md5_final(unsigned char *digest, struct HMACMD5Context *ctx) | 339 | hmac_md5_final(unsigned char *digest, struct HMACMD5Context *ctx) |
341 | { | 340 | { |
@@ -353,6 +352,7 @@ hmac_md5_final(unsigned char *digest, struct HMACMD5Context *ctx) | |||
353 | single function to calculate an HMAC MD5 digest from data. | 352 | single function to calculate an HMAC MD5 digest from data. |
354 | use the microsoft hmacmd5 init method because the key is 16 bytes. | 353 | use the microsoft hmacmd5 init method because the key is 16 bytes. |
355 | ************************************************************/ | 354 | ************************************************************/ |
355 | #if 0 /* currently unused */ | ||
356 | static void | 356 | static void |
357 | hmac_md5(unsigned char key[16], unsigned char *data, int data_len, | 357 | hmac_md5(unsigned char key[16], unsigned char *data, int data_len, |
358 | unsigned char *digest) | 358 | unsigned char *digest) |