git.annexia.org
/
libguestfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2204269
)
docs: Fix missing g handle in guestfs(3) man page.
author
Richard W.M. Jones
<rjones@redhat.com>
Thu, 30 Dec 2010 22:56:25 +0000
(22:56 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Thu, 30 Dec 2010 22:56:25 +0000
(22:56 +0000)
src/guestfs.pod
patch
|
blob
|
history
diff --git
a/src/guestfs.pod
b/src/guestfs.pod
index
9d1e6af
..
9be1122
100644
(file)
--- a/
src/guestfs.pod
+++ b/
src/guestfs.pod
@@
-352,13
+352,13
@@
descriptor N.
For example, L<virt-cat(1)> writes its output to stdout by
doing:
- guestfs_download (filename, "/dev/stdout");
+ guestfs_download (
g,
filename, "/dev/stdout");
and you can write tar output to a pipe C<fd> by doing:
char devfd[64];
snprintf (devfd, sizeof devfd, "/dev/fd/%d", fd);
- guestfs_tar_out ("/", devfd);
+ guestfs_tar_out (
g,
"/", devfd);
=head2 LISTING FILES