summaryrefslogtreecommitdiff
path: root/sunrpc/rpc_cmsg.c
diff options
context:
space:
mode:
Diffstat (limited to 'sunrpc/rpc_cmsg.c')
-rw-r--r--sunrpc/rpc_cmsg.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/sunrpc/rpc_cmsg.c b/sunrpc/rpc_cmsg.c
index 2fe401c0ad..ed70104b68 100644
--- a/sunrpc/rpc_cmsg.c
+++ b/sunrpc/rpc_cmsg.c
@@ -125,8 +125,8 @@ xdr_callmsg (XDR *xdrs, struct rpc_msg *cmsg)
buf = XDR_INLINE (xdrs, RNDUP (oa->oa_length));
if (buf == NULL)
{
- if (INTUSE(xdr_opaque) (xdrs, oa->oa_base,
- oa->oa_length) == FALSE)
+ if (xdr_opaque (xdrs, oa->oa_base,
+ oa->oa_length) == FALSE)
return FALSE;
}
else
@@ -142,8 +142,8 @@ xdr_callmsg (XDR *xdrs, struct rpc_msg *cmsg)
buf = XDR_INLINE (xdrs, 2 * BYTES_PER_XDR_UNIT);
if (buf == NULL)
{
- if (INTUSE(xdr_enum) (xdrs, &oa->oa_flavor) == FALSE ||
- INTUSE(xdr_u_int) (xdrs, &oa->oa_length) == FALSE)
+ if (xdr_enum (xdrs, &oa->oa_flavor) == FALSE ||
+ xdr_u_int (xdrs, &oa->oa_length) == FALSE)
{
return FALSE;
}
@@ -165,8 +165,8 @@ xdr_callmsg (XDR *xdrs, struct rpc_msg *cmsg)
buf = XDR_INLINE (xdrs, RNDUP (oa->oa_length));
if (buf == NULL)
{
- if (INTUSE(xdr_opaque) (xdrs, oa->oa_base,
- oa->oa_length) == FALSE)
+ if (xdr_opaque (xdrs, oa->oa_base,
+ oa->oa_length) == FALSE)
return FALSE;
}
else
@@ -182,16 +182,16 @@ xdr_callmsg (XDR *xdrs, struct rpc_msg *cmsg)
}
}
if (
- INTUSE(xdr_u_long) (xdrs, &(cmsg->rm_xid)) &&
- INTUSE(xdr_enum) (xdrs, (enum_t *) & (cmsg->rm_direction)) &&
+ xdr_u_long (xdrs, &(cmsg->rm_xid)) &&
+ xdr_enum (xdrs, (enum_t *) & (cmsg->rm_direction)) &&
(cmsg->rm_direction == CALL) &&
- INTUSE(xdr_u_long) (xdrs, &(cmsg->rm_call.cb_rpcvers)) &&
+ xdr_u_long (xdrs, &(cmsg->rm_call.cb_rpcvers)) &&
(cmsg->rm_call.cb_rpcvers == RPC_MSG_VERSION) &&
- INTUSE(xdr_u_long) (xdrs, &(cmsg->rm_call.cb_prog)) &&
- INTUSE(xdr_u_long) (xdrs, &(cmsg->rm_call.cb_vers)) &&
- INTUSE(xdr_u_long) (xdrs, &(cmsg->rm_call.cb_proc)) &&
- INTUSE(xdr_opaque_auth) (xdrs, &(cmsg->rm_call.cb_cred)))
- return INTUSE(xdr_opaque_auth) (xdrs, &(cmsg->rm_call.cb_verf));
+ xdr_u_long (xdrs, &(cmsg->rm_call.cb_prog)) &&
+ xdr_u_long (xdrs, &(cmsg->rm_call.cb_vers)) &&
+ xdr_u_long (xdrs, &(cmsg->rm_call.cb_proc)) &&
+ xdr_opaque_auth (xdrs, &(cmsg->rm_call.cb_cred)))
+ return xdr_opaque_auth (xdrs, &(cmsg->rm_call.cb_verf));
return FALSE;
}
-INTDEF(xdr_callmsg)
+libc_hidden_nolink (xdr_callmsg, GLIBC_2_0)