diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-02-14 09:25:02 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-02-14 09:25:02 +0000 |
commit | 425838aa4b78c3fa9d43d75d85ebdc15f96f52d7 (patch) | |
tree | c96475fe61a3b11f029d6e63c214d4817a330164 /sunrpc | |
parent | fc093be16082b406ee160762d773a791a5b3b965 (diff) | |
download | glibc-425838aa4b78c3fa9d43d75d85ebdc15f96f52d7.tar.gz |
Update.
2002-02-14 Ulrich Drepper <drepper@redhat.com>
* stdlib/test-a64l.c (tests): Add more test cases.
* sunrpc/rtime.c (rtime): Change type of thetime to uint32_t.
Reported by Walter Harms <WHarms@bfs.de>.
2002-02-11 Jes Sorensen <jes@trained-monkey.org>
* sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h: Add sc_flag bit
definitions for struct sigcontext.
Suggested by David Mosberger-Tang.
Diffstat (limited to 'sunrpc')
-rw-r--r-- | sunrpc/rtime.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sunrpc/rtime.c b/sunrpc/rtime.c index ba3e768b08..536d018c90 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; |