diff options
-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 92ad0a05..59b9d67a 100644 --- 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 (); |