[BACK]Return to xdryp.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / yp

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libc/yp/xdryp.c between version 1.29 and 1.30

version 1.29, 2005/11/29 03:12:01 version 1.30, 2006/05/11 17:11:57
Line 489  xdr_ypmaplist(xdrs, objp)
Line 489  xdr_ypmaplist(xdrs, objp)
         if (!xdr_ypmaplist_str(xdrs, objp->ypml_name))          if (!xdr_ypmaplist_str(xdrs, objp->ypml_name))
                 return FALSE;                  return FALSE;
   
         if (!xdr_pointer(xdrs, (caddr_t *)&objp->ypml_next,          if (!xdr_pointer(xdrs, (char **)(void *)&objp->ypml_next,
             sizeof(struct ypmaplist), (xdrproc_t)xdr_ypmaplist))              sizeof(struct ypmaplist), (xdrproc_t)xdr_ypmaplist))
                 return FALSE;                  return FALSE;
   
Line 508  xdr_ypresp_maplist(xdrs, objp)
Line 508  xdr_ypresp_maplist(xdrs, objp)
         if (!xdr_ypstat(xdrs, (enum ypbind_resptype *)(void *)&objp->status))          if (!xdr_ypstat(xdrs, (enum ypbind_resptype *)(void *)&objp->status))
                 return FALSE;                  return FALSE;
   
         if (!xdr_pointer(xdrs, (caddr_t *)&objp->list,          if (!xdr_pointer(xdrs, (char **)(void *)&objp->list,
             sizeof(struct ypmaplist), (xdrproc_t)xdr_ypmaplist))              sizeof(struct ypmaplist), (xdrproc_t)xdr_ypmaplist))
                 return FALSE;                  return FALSE;
   

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.30

CVSweb <webmaster@jp.NetBSD.org>