Changes by: antona
Update of /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25618
Modified Files:
decrypt.c
Log Message:
Remove include of openssl/md5.h as that is no longer used.
Index: decrypt.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/decrypt.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -p -r1.22 -r1.23
--- decrypt.c 2 Aug 2005 09:44:58 -0000 1.22
+++ decrypt.c 2 Aug 2005 09:48:42 -0000 1.23
@@ -25,7 +25,6 @@
#include <stdio.h>
#include <errno.h>
#include <gcrypt.h>
-#include <openssl/md5.h>
#include "decrypt.h"
@@ -403,6 +402,9 @@ unsigned ntfs_decrypt_user_key_decrypt(n
#if 0
// This is the old code based on OpenSSL. Please do not remove it. AIA
+
+#include <openssl/md5.h>
+
/**
* ntfs_desx_key_expand - expand a 128-bit desx key to the needed 192-bit key
* @src: source buffer containing 128-bit key
|