diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-07-25 11:21:48 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-07-27 15:00:15 +0100 |
commit | 3cd506f36e209aa336bf9ab56ba5f636a801d973 (patch) | |
tree | 7173f5dda7268c362680493961e1346121aa2a76 | |
parent | 346837f99a7bb5c927d0541f44b3e2493a40ec30 (diff) | |
download | libguestfs-3cd506f36e209aa336bf9ab56ba5f636a801d973.tar.gz libguestfs-3cd506f36e209aa336bf9ab56ba5f636a801d973.tar.xz libguestfs-3cd506f36e209aa336bf9ab56ba5f636a801d973.zip |
test-tool: Print FEBOOTSTRAP_* environment variables (RHBZ#671082).
(cherry picked from commit 15289d4b726d7c38702794df23c61ae40879a46c)
-rw-r--r-- | test-tool/test-tool.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test-tool/test-tool.c b/test-tool/test-tool.c index c21906f3..c855682b 100644 --- a/test-tool/test-tool.c +++ b/test-tool/test-tool.c @@ -174,6 +174,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 (); |