From: Gerald Carter Date: Fri, 12 Nov 2004 03:36:15 +0000 (+0000) Subject: r3697: BUG 2027: fix multiple declaration of MD5_CTX (do we really care about DOS... X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~5607 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b59aeb12c86f3630eb40f033b8c2b70e9a57675c;p=thirdparty%2Fsamba.git r3697: BUG 2027: fix multiple declaration of MD5_CTX (do we really care about DOS compilers?). Will watch build farm though. --- diff --git a/source/include/md5.h b/source/include/md5.h index 6665171e7c5..e4cd08ed5e8 100644 --- a/source/include/md5.h +++ b/source/include/md5.h @@ -16,9 +16,4 @@ void MD5Update(struct MD5Context *context, unsigned char const *buf, unsigned len); void MD5Final(unsigned char digest[16], struct MD5Context *context); -/* - * This is needed to make RSAREF happy on some MS-DOS compilers. - */ -typedef struct MD5Context MD5_CTX; - #endif /* !MD5_H */