From: Theodore Ts'o Date: Sat, 29 Mar 2014 14:25:49 +0000 (-0400) Subject: logsave: make message when process has a non-zero exit code to be less scary X-Git-Tag: v1.42.10~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=767183d45de9c53f841cc0fda0ff2eca9294cabe;p=thirdparty%2Fe2fsprogs.git logsave: make message when process has a non-zero exit code to be less scary Addresses-Debian-Bug: #468821 Signed-off-by: "Theodore Ts'o" --- diff --git a/misc/logsave.c b/misc/logsave.c index 8612edfb6..f6cc42a49 100644 --- a/misc/logsave.c +++ b/misc/logsave.c @@ -210,7 +210,7 @@ static int run_program(char **argv) rc = WEXITSTATUS(status); if (rc) { send_output(argv[0], 0, SEND_BOTH); - sprintf(buffer, " died with exit status %d\n", rc); + sprintf(buffer, " exited with status code %d\n", rc); send_output(buffer, 0, SEND_BOTH); } } else {