diff options
author | Steve French <sfrench@us.ibm.com> | 2006-02-09 21:12:47 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2006-02-09 21:12:47 +0000 |
commit | 12b3b8ffb5fd591df41f658d6068b76f7a58e710 (patch) | |
tree | 7034f4aed6f90d00cd24d8548c6df229aae2d22c /fs/cifs/cifsencrypt.c | |
parent | e3f749c4af69c4344d89f11e2293e3790eb4eaca (diff) | |
download | op-kernel-dev-12b3b8ffb5fd591df41f658d6068b76f7a58e710.zip op-kernel-dev-12b3b8ffb5fd591df41f658d6068b76f7a58e710.tar.gz |
[CIFS] Cleanup NTLMSSP session setup handling
Fix to hash NTLMv2 properly will follow.
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/cifsencrypt.c')
-rw-r--r-- | fs/cifs/cifsencrypt.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/cifs/cifsencrypt.c b/fs/cifs/cifsencrypt.c index a2c2485..41d08d9 100644 --- a/fs/cifs/cifsencrypt.c +++ b/fs/cifs/cifsencrypt.c @@ -1,7 +1,7 @@ /* * fs/cifs/cifsencrypt.c * - * Copyright (C) International Business Machines Corp., 2005 + * Copyright (C) International Business Machines Corp., 2005,2006 * Author(s): Steve French (sfrench@us.ibm.com) * * This library is free software; you can redistribute it and/or modify @@ -36,7 +36,8 @@ extern void mdfour(unsigned char *out, unsigned char *in, int n); extern void E_md4hash(const unsigned char *passwd, unsigned char *p16); -static int cifs_calculate_signature(const struct smb_hdr * cifs_pdu, const char * key, char * signature) +static int cifs_calculate_signature(const struct smb_hdr * cifs_pdu, + const char * key, char * signature) { struct MD5Context context; |