From a92b653af964364ee438c6ee69a87eb7603ceab0 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 21 May 2010 10:38:04 +1000 Subject: s3:passdb Remove use of uint8 uint16 and uint32 in favour of C99 types MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Günther Deschner --- source3/lib/time.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/lib') diff --git a/source3/lib/time.c b/source3/lib/time.c index b965479957..3a43a5b6cd 100644 --- a/source3/lib/time.c +++ b/source3/lib/time.c @@ -50,7 +50,7 @@ NTTIME nttime_from_string(const char *s) preserve the "special" values. **************************************************************/ -uint32_t convert_time_t_to_uint32(time_t t) +uint32_t convert_time_t_to_uint32_t(time_t t) { #if (defined(SIZEOF_TIME_T) && (SIZEOF_TIME_T == 8)) /* time_t is 64-bit. */ @@ -63,7 +63,7 @@ uint32_t convert_time_t_to_uint32(time_t t) return (uint32_t)t; } -time_t convert_uint32_to_time_t(uint32_t u) +time_t convert_uint32_t_to_time_t(uint32_t u) { #if (defined(SIZEOF_TIME_T) && (SIZEOF_TIME_T == 8)) /* time_t is 64-bit. */ -- cgit