From 89c411dffeee89c83fe28df99dd712691c7f7759 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 14 Feb 2002 09:05:27 +0000 Subject: [PATCH] (rtime): Change type of thetime to uint32_t. --- sunrpc/rtime.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.47.2