]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sunrpc/clnt_tcp.c
Consistently use uintN_t not u_intN_t everywhere.
[thirdparty/glibc.git] / sunrpc / clnt_tcp.c
index e311b35a258f7a657272871199785b5263f0e610..249e9c3584f2a563ae56a2f7f8cdf9dc6e4520d4 100644 (file)
@@ -233,7 +233,7 @@ clnttcp_call (CLIENT *h, u_long proc, xdrproc_t xdr_args, caddr_t args_ptr,
   XDR *xdrs = &(ct->ct_xdrs);
   struct rpc_msg reply_msg;
   u_long x_id;
-  u_int32_t *msg_x_id = (u_int32_t *) (ct->ct_mcall);  /* yuk */
+  uint32_t *msg_x_id = (uint32_t *) (ct->ct_mcall);    /* yuk */
   bool_t shipnow;
   int refreshes = 2;
 
@@ -291,7 +291,7 @@ call_again:
            continue;
          return ct->ct_error.re_status;
        }
-      if ((u_int32_t) reply_msg.rm_xid == (u_int32_t) x_id)
+      if ((uint32_t) reply_msg.rm_xid == (uint32_t) x_id)
        break;
     }
 
@@ -356,7 +356,7 @@ clnttcp_control (CLIENT *cl, int request, char *info)
 {
   struct ct_data *ct = (struct ct_data *) cl->cl_private;
   u_long ul;
-  u_int32_t ui32;
+  uint32_t ui32;
 
 
   switch (request)