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:
deb9547
)
test-tool: Print FEBOOTSTRAP_* environment variables (RHBZ#671082).
author
Richard W.M. Jones
<rjones@redhat.com>
Mon, 25 Jul 2011 10:21:48 +0000
(11:21 +0100)
committer
Richard W.M. Jones
<rjones@redhat.com>
Tue, 26 Jul 2011 11:48:59 +0000
(12:48 +0100)
test-tool/test-tool.c
patch
|
blob
|
history
diff --git
a/test-tool/test-tool.c
b/test-tool/test-tool.c
index
92ad0a0
..
59b9d67
100644
(file)
--- a/
test-tool/test-tool.c
+++ b/
test-tool/test-tool.c
@@
-162,6
+162,9
@@
main (int argc, char *argv[])
for (i = 0; environ[i] != NULL; ++i)
if (STREQLEN (environ[i], "LIBGUESTFS_", 11))
printf ("%s\n", environ[i]);
+ for (i = 0; environ[i] != NULL; ++i)
+ if (STREQLEN (environ[i], "FEBOOTSTRAP_", 12))
+ printf ("%s\n", environ[i]);
/* Create the handle and configure it. */
g = guestfs_create ();