X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=daemon%2Fcpmv.c;h=e5457d65835fcb51b567b29d21e1cd70cf06553a;hb=b2edcbe1b9c9d161e96cb56d0efd944e84d84526;hp=47b8aa2797cb8de2b97a037e29d6d32d9dfdf4e3;hpb=80c479162db74c461d671128237975aecc982a5e;p=libguestfs.git diff --git a/daemon/cpmv.c b/daemon/cpmv.c index 47b8aa2..e5457d6 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) { - reply_with_error ("%s: %s", cmd, err); + pulse_mode_cancel (); + reply_with_error ("%s", err); free (err); return -1; } free (err); + pulse_mode_end (); + return 0; }