~ubuntu-branches/ubuntu/precise/eglibc/precise-201308281639

« back to all changes in this revision

Viewing changes to sunrpc/pmap_prot2.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-02-08 01:58:09 UTC
  • mfrom: (1.5.3) (288.1.12 precise)
  • Revision ID: package-import@ubuntu.com-20120208015809-ulscst7uteq3e22z
Tags: 2.15~pre6-0ubuntu10
Merge from Debian (r5151, 2.13-26).

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
  while (TRUE)
93
93
    {
94
94
      more_elements = (bool_t) (*rp != NULL);
95
 
      if (!INTUSE(xdr_bool) (xdrs, &more_elements))
 
95
      if (!xdr_bool (xdrs, &more_elements))
96
96
        return FALSE;
97
97
      if (!more_elements)
98
98
        return TRUE;            /* we are done */
103
103
       */
104
104
      if (freeing)
105
105
        next = (*rp)->pml_next;
106
 
      if (!INTUSE(xdr_reference) (xdrs, (caddr_t *) rp,
107
 
                                  (u_int) sizeof (struct pmaplist),
108
 
                                  (xdrproc_t) INTUSE(xdr_pmap)))
 
106
      if (!xdr_reference (xdrs, (caddr_t *) rp,
 
107
                          (u_int) sizeof (struct pmaplist),
 
108
                          (xdrproc_t) xdr_pmap))
109
109
          return FALSE;
110
110
      rp = freeing ? &next : &((*rp)->pml_next);
111
111
    }
112
112
}
113
 
INTDEF(xdr_pmaplist)
 
113
libc_hidden_nolink (xdr_pmaplist, GLIBC_2_0)