summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2011-04-01 18:37:29 +0100
committerRichard W.M. Jones <rjones@redhat.com>2011-04-01 18:37:48 +0100
commite9feff6f4ca75a7c457927c93ae7f719694b86c7 (patch)
tree439dc5fb919a0cf12aba42e15365a94232c233af
parent4a64a5a285877df58cd303194735f7414e11e7f3 (diff)
downloadlibguestfs-e9feff6f4ca75a7c457927c93ae7f719694b86c7.tar.gz
libguestfs-e9feff6f4ca75a7c457927c93ae7f719694b86c7.tar.xz
libguestfs-e9feff6f4ca75a7c457927c93ae7f719694b86c7.zip
cpmv: Add pulse mode progress messages.
-rw-r--r--daemon/cpmv.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/daemon/cpmv.c b/daemon/cpmv.c
index 587e017d..e5457d65 100644
--- a/daemon/cpmv.c
+++ b/daemon/cpmv.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
@@ -65,6 +65,8 @@ cpmv_cmd (const char *cmd, const char *flags, const char *src, const char *dest)
return -1;
}
+ pulse_mode_start ();
+
if (flags)
r = command (NULL, &err, cmd, flags, srcbuf, destbuf, NULL);
else
@@ -74,11 +76,14 @@ cpmv_cmd (const char *cmd, const char *flags, const char *src, const char *dest)
free (destbuf);
if (r == -1) {
+ pulse_mode_cancel ();
reply_with_error ("%s", err);
free (err);
return -1;
}
free (err);
+ pulse_mode_end ();
+
return 0;
}