Deleted Added
full compact
31a32,33
> * $FreeBSD: head/usr.sbin/rpc.statd/file.c 74499 2001-03-20 01:36:41Z alfred $
> *
210,232d211
< /* xdr_stat_chge ----------------------------------------------------------- */
< /*
< Purpose: XDR-encode structure of type stat_chge
< Returns: TRUE if successful
< Notes: This function is missing from librpcsvc, because the
< sm_inter.x distributed by Sun omits the SM_NOTIFY
< procedure used between co-operating statd's
< */
<
< bool_t xdr_stat_chge(XDR *xdrs, stat_chge *objp)
< {
< if (!xdr_string(xdrs, &objp->mon_name, SM_MAXSTRLEN))
< {
< return (FALSE);
< }
< if (!xdr_int(xdrs, &objp->state))
< {
< return (FALSE);
< }
< return (TRUE);
< }
<
<