Fix xdr_ypmap_parms() so that it agrees with xdr_domainname(), xdr_peername()
and friends.
This commit is contained in:
parent
b97843726d
commit
6cc65caedb
@ -28,7 +28,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef LINT
|
#ifndef LINT
|
||||||
static char *rcsid = "$Id: xdryp.c,v 1.1 1994/08/07 23:04:54 wollman Exp $";
|
static char *rcsid = "$Id: xdryp.c,v 1.2 1995/04/02 01:02:17 wpaul Exp $";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
@ -449,16 +449,16 @@ xdr_ypmap_parms(xdrs, objp)
|
|||||||
XDR *xdrs;
|
XDR *xdrs;
|
||||||
struct ypmap_parms *objp;
|
struct ypmap_parms *objp;
|
||||||
{
|
{
|
||||||
if (!xdr_domainname(xdrs, &objp->domain)) {
|
if (!xdr_domainname(xdrs, objp->domain)) {
|
||||||
return (FALSE);
|
return (FALSE);
|
||||||
}
|
}
|
||||||
if (!xdr_mapname(xdrs, &objp->map)) {
|
if (!xdr_mapname(xdrs, objp->map)) {
|
||||||
return (FALSE);
|
return (FALSE);
|
||||||
}
|
}
|
||||||
if (!xdr_u_long(xdrs, &objp->ordernum)) {
|
if (!xdr_u_long(xdrs, &objp->ordernum)) {
|
||||||
return (FALSE);
|
return (FALSE);
|
||||||
}
|
}
|
||||||
if (!xdr_peername(xdrs, &objp->owner)) {
|
if (!xdr_peername(xdrs, objp->owner)) {
|
||||||
return (FALSE);
|
return (FALSE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user