diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-01-29 12:59:08 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-01-29 12:59:08 +0000 |
commit | 9270f939c654f2682299b99c4ff50d9ebefc63cc (patch) | |
tree | 707750fdc23a1ec14db07676105e97a5cdddaf95 /sunrpc/clnt_tcp.c | |
parent | 84514bcbf25a3c06b899c1ac9d70987b92fded22 (diff) | |
download | glibc-9270f939c654f2682299b99c4ff50d9ebefc63cc.tar.gz |
Update.
* sunrpc/clnt_tcp.c (clnttcp_call): Resolve 32-64 comparison
conflict for 64 bit platforms.
Patch by trott@rottmann.hi.shuttle.de.
* sysdeps/i386/Versions: Exports functions from libgcc since this
Diffstat (limited to 'sunrpc/clnt_tcp.c')
-rw-r--r-- | sunrpc/clnt_tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sunrpc/clnt_tcp.c b/sunrpc/clnt_tcp.c index abb284982e..8fc312b9a2 100644 --- a/sunrpc/clnt_tcp.c +++ b/sunrpc/clnt_tcp.c @@ -300,7 +300,7 @@ call_again: continue; return ct->ct_error.re_status; } - if (reply_msg.rm_xid == x_id) + if ((u_int32_t) reply_msg.rm_xid == x_id) break; } |