summaryrefslogtreecommitdiff
path: root/source3/include/hmacmd5.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2006-02-18 00:27:31 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:10:13 -0500
commit9132acff082381b32961eb2b3244b8fedd4df218 (patch)
tree344dc24de1501de59edc6036480efaf29807d92f /source3/include/hmacmd5.h
parent3403fc2d4966e7b2e29ec45ecdc53332302427e4 (diff)
downloadsamba-9132acff082381b32961eb2b3244b8fedd4df218.tar.gz
samba-9132acff082381b32961eb2b3244b8fedd4df218.tar.bz2
samba-9132acff082381b32961eb2b3244b8fedd4df218.zip
r13553: Fix all our warnings at -O6 on an x86_64 box.
Jeremy. (This used to be commit ea82958349a57ef4b7ce9638eec5f1388b0fba2a)
Diffstat (limited to 'source3/include/hmacmd5.h')
-rw-r--r--source3/include/hmacmd5.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/source3/include/hmacmd5.h b/source3/include/hmacmd5.h
index 6b53a6fd07..89ea3fed80 100644
--- a/source3/include/hmacmd5.h
+++ b/source3/include/hmacmd5.h
@@ -21,12 +21,10 @@
#ifndef _HMAC_MD5_H
-typedef struct
-{
- struct MD5Context ctx;
- uchar k_ipad[65];
- uchar k_opad[65];
-
+typedef struct {
+ struct MD5Context ctx;
+ unsigned char k_ipad[65];
+ unsigned char k_opad[65];
} HMACMD5Context;
#endif /* _HMAC_MD5_H */