diff options
Diffstat (limited to 'src/guestfs_protocol.c')
-rw-r--r-- | src/guestfs_protocol.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/guestfs_protocol.c b/src/guestfs_protocol.c index 16e80f17..b12133a0 100644 --- a/src/guestfs_protocol.c +++ b/src/guestfs_protocol.c @@ -1450,6 +1450,16 @@ xdr_guestfs_fsck_ret (XDR *xdrs, guestfs_fsck_ret *objp) } bool_t +xdr_guestfs_zero_args (XDR *xdrs, guestfs_zero_args *objp) +{ + register int32_t *buf; + + if (!xdr_string (xdrs, &objp->device, ~0)) + return FALSE; + return TRUE; +} + +bool_t xdr_guestfs_procedure (XDR *xdrs, guestfs_procedure *objp) { register int32_t *buf; |