Whamcloud - gitweb
git://git.whamcloud.com
/
tools
/
e2fsprogs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9aef4b6
)
logsave: make message when process has a non-zero exit code to be less scary
author
Theodore Ts'o
<tytso@mit.edu>
Sat, 29 Mar 2014 14:25:49 +0000
(10:25 -0400)
committer
Theodore Ts'o
<tytso@mit.edu>
Sat, 29 Mar 2014 14:25:49 +0000
(10:25 -0400)
Addresses-Debian-Bug: #468821
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
misc/logsave.c
patch
|
blob
|
history
diff --git
a/misc/logsave.c
b/misc/logsave.c
index
8612edf
..
f6cc42a
100644
(file)
--- 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 {