summaryrefslogtreecommitdiff
path: root/sunrpc/xdr_rec.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-02-06 07:09:01 +0000
committerUlrich Drepper <drepper@redhat.com>2001-02-06 07:09:01 +0000
commit216c13860de8da0f9f2a7e5f9ac9c4cfcda7ba68 (patch)
treea3ba8fc4354b15511d37741a09833c891ab3a474 /sunrpc/xdr_rec.c
parent02cd8aeefd8c3803f60a2f031c4e7245d507c93b (diff)
Update.
2001-02-05 Ulrich Drepper <drepper@redhat.com> * sunrpc/xdr_rec.c (set_input_fragment): Change type of header variable to uint32_t. Reported by Ulrich Weigand <weigand@immd1.informatik.uni-erlangen.de>.
Diffstat (limited to 'sunrpc/xdr_rec.c')
-rw-r--r--sunrpc/xdr_rec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sunrpc/xdr_rec.c b/sunrpc/xdr_rec.c
index 7d5611961a..3544edc2e8 100644
--- a/sunrpc/xdr_rec.c
+++ b/sunrpc/xdr_rec.c
@@ -598,7 +598,7 @@ static bool_t /* next two bytes of the input stream are treated as a header */
internal_function
set_input_fragment (RECSTREAM *rstrm)
{
- u_long header;
+ uint32_t header;
if (! get_input_bytes (rstrm, (caddr_t)&header, BYTES_PER_XDR_UNIT))
return FALSE;