diff options
author | Shirish Pargaonkar <shirishpargaonkar@gmail.com> | 2011-01-27 09:58:04 -0600 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2011-01-27 19:58:13 +0000 |
commit | ee2c9258501f83d3ed0fd09ce5df1cec53312cf0 (patch) | |
tree | 2690ab3e75343be23a4969846a0c71f0df842dc7 /fs/cifs/Makefile | |
parent | d39454ffe4a3c85428483b8a8a8e5e797b6363d5 (diff) | |
download | linux-3.10-ee2c9258501f83d3ed0fd09ce5df1cec53312cf0.tar.gz linux-3.10-ee2c9258501f83d3ed0fd09ce5df1cec53312cf0.tar.bz2 linux-3.10-ee2c9258501f83d3ed0fd09ce5df1cec53312cf0.zip |
cifs: More crypto cleanup (try #2)
Replaced md4 hashing function local to cifs module with kernel crypto APIs.
As a result, md4 hashing function and its supporting functions in
file md4.c are not needed anymore.
Cleaned up function declarations, removed forward function declarations,
and removed a header file that is being deleted from being included.
Verified that sec=ntlm/i, sec=ntlmv2/i, and sec=ntlmssp/i work correctly.
Signed-off-by: Shirish Pargaonkar <shirishpargaonkar@gmail.com>
Reviewed-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/Makefile')
-rw-r--r-- | fs/cifs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/Makefile b/fs/cifs/Makefile index e1322296cb6..d87558448e3 100644 --- a/fs/cifs/Makefile +++ b/fs/cifs/Makefile @@ -5,7 +5,7 @@ obj-$(CONFIG_CIFS) += cifs.o cifs-y := cifsfs.o cifssmb.o cifs_debug.o connect.o dir.o file.o inode.o \ link.o misc.o netmisc.o smbdes.o smbencrypt.o transport.o asn1.o \ - md4.o cifs_unicode.o nterr.o xattr.o cifsencrypt.o \ + cifs_unicode.o nterr.o xattr.o cifsencrypt.o \ readdir.o ioctl.o sess.o export.o cifs-$(CONFIG_CIFS_ACL) += cifsacl.o |