svn commit: samba r15199 - in branches/SAMBA_4_0/source/lib/crypto: .

abartlet at samba.org abartlet at samba.org
Mon Apr 24 13:55:21 GMT 2006


Author: abartlet
Date: 2006-04-24 13:55:21 +0000 (Mon, 24 Apr 2006)
New Revision: 15199

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15199

Log:
Try to make these prototypes match, to get the build on S390 linux going.

Andrew Bartlett

Modified:
   branches/SAMBA_4_0/source/lib/crypto/md5.h


Changeset:
Modified: branches/SAMBA_4_0/source/lib/crypto/md5.h
===================================================================
--- branches/SAMBA_4_0/source/lib/crypto/md5.h	2006-04-24 12:01:14 UTC (rev 15198)
+++ branches/SAMBA_4_0/source/lib/crypto/md5.h	2006-04-24 13:55:21 UTC (rev 15199)
@@ -11,9 +11,9 @@
 	uint8_t in[64];
 };
 
-void MD5Init(struct MD5Context *context);
-void MD5Update(struct MD5Context *context, const uint8_t *buf,
+_PUBLIC_ void MD5Init(struct MD5Context *context);
+_PUBLIC_ void MD5Update(struct MD5Context *context, const uint8_t *buf,
 	       uint_t len);
-void MD5Final(uint8_t digest[16], struct MD5Context *context);
+_PUBLIC_ void MD5Final(uint8_t digest[16], struct MD5Context *context);
 
 #endif /* !MD5_H */



More information about the samba-cvs mailing list