Matthew Booth
2010-Aug-24 15:27 UTC
[Libguestfs] [PATCH] Fix build failure caused by 4b753c62
4b753c62089be663ac722e4a875bb061d259e87d missed a couple of uses of
print_timestamped_message in launch.c.
---
src/launch.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/launch.c b/src/launch.c
index 9deb0cf..07a89ec 100644
--- a/src/launch.c
+++ b/src/launch.c
@@ -927,7 +927,7 @@ build_supermin_appliance (guestfs_h *g, const char *path,
int r, len;
if (g->verbose)
- print_timestamped_message (g, "begin building supermin
appliance");
+ guestfs___print_timestamped_message (g, "begin building supermin
appliance");
len = strlen (g->tmpdir);
*kernel = safe_malloc (g, len + 8);
@@ -950,7 +950,7 @@ build_supermin_appliance (guestfs_h *g, const char *path,
path,
*kernel, *initrd);
if (g->verbose)
- print_timestamped_message (g, "%s", cmd);
+ guestfs___print_timestamped_message (g, "%s", cmd);
r = system (cmd);
if (r == -1 || WEXITSTATUS(r) != 0) {
@@ -962,7 +962,7 @@ build_supermin_appliance (guestfs_h *g, const char *path,
}
if (g->verbose)
- print_timestamped_message (g, "finished building supermin
appliance");
+ guestfs___print_timestamped_message (g, "finished building supermin
appliance");
return 0;
}
--
1.7.2.2
Matthew Booth
2010-Aug-24 15:41 UTC
[Libguestfs] [PATCH] Fix build failure caused by 4b753c62
On 24/08/10 16:27, Matthew Booth wrote:> 4b753c62089be663ac722e4a875bb061d259e87d missed a couple of uses of > print_timestamped_message in launch.c.Ignore this. It's fixed by 5c31f6126ba4ea3e9056c34c300f6f5e332ab997. Matt -- Matthew Booth, RHCA, RHCSS Red Hat Engineering, Virtualisation Team GPG ID: D33C3490 GPG FPR: 3733 612D 2D05 5458 8A8A 1600 3441 EA19 D33C 3490
Reasonably Related Threads
- [PATCH] Fix error launching libguestfs when euid != uid
- [PATCH 0/3] RFC: Allow use of external QEMU process with libguestfs
- [PATCH 3/4] appliance: Move code for creating supermin appliance directory to tmpdirs.c.
- Remove temporary directories created during appliance building along error paths (RHBZ#769680)
- Re: [PATCH] appliance: reorder the steps to search for appliance