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

« back to all changes in this revision

Viewing changes to sunrpc/svc_authux.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:
67
67
  aup->aup_machname = area->area_machname;
68
68
  aup->aup_gids = area->area_gids;
69
69
  auth_len = (u_int) msg->rm_call.cb_cred.oa_length;
70
 
  INTUSE(xdrmem_create) (&xdrs, msg->rm_call.cb_cred.oa_base, auth_len,
71
 
                         XDR_DECODE);
 
70
  xdrmem_create (&xdrs, msg->rm_call.cb_cred.oa_base, auth_len, XDR_DECODE);
72
71
  buf = XDR_INLINE (&xdrs, auth_len);
73
72
  if (buf != NULL)
74
73
    {
106
105
          goto done;
107
106
        }
108
107
    }
109
 
  else if (!INTUSE(xdr_authunix_parms) (&xdrs, aup))
 
108
  else if (!xdr_authunix_parms (&xdrs, aup))
110
109
    {
111
110
      xdrs.x_op = XDR_FREE;
112
 
      (void) INTUSE(xdr_authunix_parms) (&xdrs, aup);
 
111
      (void) xdr_authunix_parms (&xdrs, aup);
113
112
      stat = AUTH_BADCRED;
114
113
      goto done;
115
114
    }