From 7b57bfe5988e476ea40934457dfd1c8a231e2391 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 16 Apr 2011 21:59:36 -0400 Subject: Obsolete RPC implementation in libc. --- sunrpc/pmap_prot.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sunrpc/pmap_prot.c') diff --git a/sunrpc/pmap_prot.c b/sunrpc/pmap_prot.c index 8362e128fe..5a2e052728 100644 --- a/sunrpc/pmap_prot.c +++ b/sunrpc/pmap_prot.c @@ -43,10 +43,10 @@ xdr_pmap (xdrs, regs) struct pmap *regs; { - if (INTUSE(xdr_u_long) (xdrs, ®s->pm_prog) && - INTUSE(xdr_u_long) (xdrs, ®s->pm_vers) && - INTUSE(xdr_u_long) (xdrs, ®s->pm_prot)) - return INTUSE(xdr_u_long) (xdrs, ®s->pm_port); + if (xdr_u_long (xdrs, ®s->pm_prog) && + xdr_u_long (xdrs, ®s->pm_vers) && + xdr_u_long (xdrs, ®s->pm_prot)) + return xdr_u_long (xdrs, ®s->pm_port); return FALSE; } -INTDEF(xdr_pmap) +libc_hidden_nolink (xdr_pmap, GLIBC_2_0) -- cgit 1.4.1