diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2009-05-01 11:27:52 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2009-05-01 11:27:52 +0100 |
commit | 24bee20ce4196d45891925332a47a05aa5e40938 (patch) | |
tree | 434b56343dde38ae0c877cab236ada753e2f8549 /src/guestfs_protocol.c | |
parent | 8c60f5c681b5d7cf90bc798fcaf94cd4e242e27f (diff) | |
download | libguestfs-24bee20ce4196d45891925332a47a05aa5e40938.tar.gz libguestfs-24bee20ce4196d45891925332a47a05aa5e40938.tar.xz libguestfs-24bee20ce4196d45891925332a47a05aa5e40938.zip |
Generated code for dmesg command.
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 395e710f..7a40e14e 100644 --- a/src/guestfs_protocol.c +++ b/src/guestfs_protocol.c @@ -1518,6 +1518,16 @@ xdr_guestfs_drop_caches_args (XDR *xdrs, guestfs_drop_caches_args *objp) } bool_t +xdr_guestfs_dmesg_ret (XDR *xdrs, guestfs_dmesg_ret *objp) +{ + register int32_t *buf; + + if (!xdr_string (xdrs, &objp->kmsgs, ~0)) + return FALSE; + return TRUE; +} + +bool_t xdr_guestfs_procedure (XDR *xdrs, guestfs_procedure *objp) { register int32_t *buf; |