summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2011-04-01 18:37:39 +0100
committerRichard W.M. Jones <rjones@redhat.com>2011-04-01 18:37:48 +0100
commit4a64a5a285877df58cd303194735f7414e11e7f3 (patch)
treeed0c653474ecd811e80a31cc9c37da8a4ea0306b
parent40f7323134e058c0920caa18c667ea99a4c8b3e8 (diff)
downloadlibguestfs-4a64a5a285877df58cd303194735f7414e11e7f3.tar.gz
libguestfs-4a64a5a285877df58cd303194735f7414e11e7f3.tar.xz
libguestfs-4a64a5a285877df58cd303194735f7414e11e7f3.zip
checksum: Add pulse mode progress messages.
-rw-r--r--daemon/checksum.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/daemon/checksum.c b/daemon/checksum.c
index cdb0a189..0bd9623d 100644
--- a/daemon/checksum.c
+++ b/daemon/checksum.c
@@ -1,5 +1,5 @@
/* libguestfs - the guestfsd daemon
- * Copyright (C) 2009 Red Hat Inc.
+ * Copyright (C) 2009-2011 Red Hat Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -66,9 +66,12 @@ checksum (const char *csumtype, int fd)
return NULL;
}
+ pulse_mode_start ();
+
flags = COMMAND_FLAG_CHROOT_COPY_FILE_TO_STDIN | fd;
r = commandf (&out, &err, flags, program, NULL);
if (r == -1) {
+ pulse_mode_cancel ();
reply_with_error ("%s: %s", program, err);
free (out);
free (err);
@@ -81,6 +84,8 @@ checksum (const char *csumtype, int fd)
len = strcspn (out, " \t\n");
out[len] = '\0';
+ pulse_mode_end ();
+
return out; /* Caller frees. */
}