diff options
Diffstat (limited to 'fs/cifs/smbdes.c')
-rw-r--r-- | fs/cifs/smbdes.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/cifs/smbdes.c b/fs/cifs/smbdes.c index efaa044523a7..7a1b2b961ec8 100644 --- a/fs/cifs/smbdes.c +++ b/fs/cifs/smbdes.c | |||
@@ -364,20 +364,20 @@ E_P24(unsigned char *p21, unsigned char *c8, unsigned char *p24) | |||
364 | smbhash(p24 + 16, c8, p21 + 14, 1); | 364 | smbhash(p24 + 16, c8, p21 + 14, 1); |
365 | } | 365 | } |
366 | 366 | ||
367 | void | 367 | #if 0 /* currently unsued */ |
368 | static void | ||
368 | D_P16(unsigned char *p14, unsigned char *in, unsigned char *out) | 369 | D_P16(unsigned char *p14, unsigned char *in, unsigned char *out) |
369 | { | 370 | { |
370 | smbhash(out, in, p14, 0); | 371 | smbhash(out, in, p14, 0); |
371 | smbhash(out + 8, in + 8, p14 + 7, 0); | 372 | smbhash(out + 8, in + 8, p14 + 7, 0); |
372 | } | 373 | } |
373 | 374 | ||
374 | void | 375 | static void |
375 | E_old_pw_hash(unsigned char *p14, unsigned char *in, unsigned char *out) | 376 | E_old_pw_hash(unsigned char *p14, unsigned char *in, unsigned char *out) |
376 | { | 377 | { |
377 | smbhash(out, in, p14, 1); | 378 | smbhash(out, in, p14, 1); |
378 | smbhash(out + 8, in + 8, p14 + 7, 1); | 379 | smbhash(out + 8, in + 8, p14 + 7, 1); |
379 | } | 380 | } |
380 | #if 0 | ||
381 | /* these routines are currently unneeded, but may be | 381 | /* these routines are currently unneeded, but may be |
382 | needed later */ | 382 | needed later */ |
383 | void | 383 | void |