diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-06-01 08:30:34 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:23 -0500 |
commit | 98d291423ff581786a369ce373c861f94c654aa0 (patch) | |
tree | cfcc2391f71a4f3373c5fff359a285aeee558639 /source4/include | |
parent | fa2e9ec311b99dee2fbff5ee5fa2c743298dacad (diff) | |
download | samba-98d291423ff581786a369ce373c861f94c654aa0.tar.gz samba-98d291423ff581786a369ce373c861f94c654aa0.tar.bz2 samba-98d291423ff581786a369ce373c861f94c654aa0.zip |
r961: convert 'uchar' to 'uint8_t'
metze
(This used to be commit 9f914e4af99e18b469d4cf9d8b1514a2bd28ddec)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/hmacmd5.h | 4 | ||||
-rw-r--r-- | source4/include/includes.h | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/source4/include/hmacmd5.h b/source4/include/hmacmd5.h index 6b53a6fd07..aea4da30f8 100644 --- a/source4/include/hmacmd5.h +++ b/source4/include/hmacmd5.h @@ -24,8 +24,8 @@ typedef struct { struct MD5Context ctx; - uchar k_ipad[65]; - uchar k_opad[65]; + uint8_t k_ipad[65]; + uint8_t k_opad[65]; } HMACMD5Context; diff --git a/source4/include/includes.h b/source4/include/includes.h index d067a0d214..808bb5dd78 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -432,10 +432,6 @@ typedef int socklen_t; #endif -#ifndef uchar -#define uchar unsigned char -#endif - /* Samba needs type definitions for int8_t, int16_t, int32_t, int64_t |