From 15289d4b726d7c38702794df23c61ae40879a46c Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Mon, 25 Jul 2011 11:21:48 +0100 Subject: [PATCH] test-tool: Print FEBOOTSTRAP_* environment variables (RHBZ#671082). --- test-tool/test-tool.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test-tool/test-tool.c b/test-tool/test-tool.c index 92ad0a0..59b9d67 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 (); -- 1.8.3.1