diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-04-16 21:59:36 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-04-16 21:59:36 -0400 |
commit | 7b57bfe5988e476ea40934457dfd1c8a231e2391 (patch) | |
tree | 33dbec2b9a1a8fd8472a214945090f31d5372a8e /sunrpc/rpc_cmsg.c | |
parent | e6c61494125126d2ba77e5d99f83887a2ed49783 (diff) | |
download | glibc-7b57bfe5988e476ea40934457dfd1c8a231e2391.tar glibc-7b57bfe5988e476ea40934457dfd1c8a231e2391.tar.gz glibc-7b57bfe5988e476ea40934457dfd1c8a231e2391.tar.bz2 glibc-7b57bfe5988e476ea40934457dfd1c8a231e2391.zip |
Obsolete RPC implementation in libc.
Diffstat (limited to 'sunrpc/rpc_cmsg.c')
-rw-r--r-- | sunrpc/rpc_cmsg.c | 30 |
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) |