From: Ulrich Drepper Date: Thu, 14 Feb 2002 09:05:27 +0000 (+0000) Subject: (rtime): Change type of thetime to uint32_t. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89c411dffeee89c83fe28df99dd712691c7f7759;p=thirdparty%2Fglibc.git (rtime): Change type of thetime to uint32_t. --- diff --git a/sunrpc/rtime.c b/sunrpc/rtime.c index ba3e768b08b..536d018c903 100644 --- a/sunrpc/rtime.c +++ b/sunrpc/rtime.c @@ -77,7 +77,8 @@ rtime (struct sockaddr_in *addrp, struct rpc_timeval *timep, struct pollfd fd; int milliseconds; int res; - unsigned long thetime; + /* RFC 868 says the time is transmitted as a 32-bit value. */ + uint32_t thetime; struct sockaddr_in from; int fromlen; int type;