From 98d291423ff581786a369ce373c861f94c654aa0 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 1 Jun 2004 08:30:34 +0000 Subject: r961: convert 'uchar' to 'uint8_t' metze (This used to be commit 9f914e4af99e18b469d4cf9d8b1514a2bd28ddec) --- source4/include/hmacmd5.h | 4 ++-- source4/include/includes.h | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) (limited to 'source4/include') 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 -- cgit