diff options
Diffstat (limited to 'daemon')
-rw-r--r-- | daemon/guestfsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/guestfsd.c b/daemon/guestfsd.c index 43f41df0..ac89a214 100644 --- a/daemon/guestfsd.c +++ b/daemon/guestfsd.c @@ -912,7 +912,7 @@ commandrvf (char **stdoutput, char **stderror, int flags, } if (!WIFEXITED (r) || WEXITSTATUS (r) != 0) { - fprintf (stderr, "failed copying from input file, see earlier messages\n"); + fprintf (stderr, "failed copying from input file, see earlier messages (r = %d)\n", r); kill (pid, 9); waitpid (pid, NULL, 0); return -1; |