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 c2e96da3..2838d95c 100644 --- a/src/guestfs_protocol.c +++ b/src/guestfs_protocol.c @@ -1829,6 +1829,16 @@ xdr_guestfs_find_ret (XDR *xdrs, guestfs_find_ret *objp) } bool_t +xdr_guestfs_e2fsck_f_args (XDR *xdrs, guestfs_e2fsck_f_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; |