aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/smbdes.c
diff options
context:
space:
mode:
authorSteve French <sfrench@us.ibm.com>2006-09-28 15:43:08 -0400
committerSteve French <sfrench@us.ibm.com>2006-09-28 15:43:08 -0400
commit2cd646a2d1d5e0e46aa4bb55b1847b0cb35bd855 (patch)
tree06be4e598e93e5426f32837386187395e592bb0a /fs/cifs/smbdes.c
parent1bd5bbcb6531776a8f73e2cc6287fc4dd542e1c7 (diff)
[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/smbdes.c')
-rw-r--r--fs/cifs/smbdes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/smbdes.c b/fs/cifs/smbdes.c
index efaa044523a7..2b193e422f83 100644
--- a/fs/cifs/smbdes.c
+++ b/fs/cifs/smbdes.c
@@ -364,14 +364,14 @@ 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
367void 367static void
368D_P16(unsigned char *p14, unsigned char *in, unsigned char *out) 368D_P16(unsigned char *p14, unsigned char *in, unsigned char *out)
369{ 369{
370 smbhash(out, in, p14, 0); 370 smbhash(out, in, p14, 0);
371 smbhash(out + 8, in + 8, p14 + 7, 0); 371 smbhash(out + 8, in + 8, p14 + 7, 0);
372} 372}
373 373
374void 374static void
375E_old_pw_hash(unsigned char *p14, unsigned char *in, unsigned char *out) 375E_old_pw_hash(unsigned char *p14, unsigned char *in, unsigned char *out)
376{ 376{
377 smbhash(out, in, p14, 1); 377 smbhash(out, in, p14, 1);