aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2009-10-14 01:00:34 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2009-10-14 01:02:52 +0300
commit9dbe6b40d07df41255f0c8fda6895000b7c7e1a6 (patch)
tree7a8cca3e9852fbde894710c4f1904ef833789865 /src
parenta37103f89c20e6b30d1f739233be006dcff340ee (diff)
downloadpies-9dbe6b40d07df41255f0c8fda6895000b7c7e1a6.tar.gz
pies-9dbe6b40d07df41255f0c8fda6895000b7c7e1a6.tar.bz2
Minor changes.
* doc/Makefile.am (check-sub-config): Silent the rule. * doc/pies.texi: Update. * src/progman.c (default_termination_message): Use ${termination} (notify): Fix wording in ${termination}.
Diffstat (limited to 'src')
-rw-r--r--src/progman.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/progman.c b/src/progman.c
index b85a797..e420e85 100644
--- a/src/progman.c
+++ b/src/progman.c
@@ -1497,7 +1497,7 @@ send_msg (char *rcpts, const char *msg_text)
static const char default_termination_message[] =
"From: <>\n"
"X-Agent: ${canonical-program-name} (${package} ${version})\n"
-"Subject: Component ${component} terminated with code ${retcode}.\n"
+"Subject: Component ${component} ${termination} ${retcode}.\n"
"\n";
static void
@@ -1530,7 +1530,7 @@ notify (const char *tag, int status, struct action *act)
}
else if (WIFSIGNALED (status))
{
- mdef[TERMINATION_IDX].value = _("caught signal");
+ mdef[TERMINATION_IDX].value = _("terminated on signal");
mdef[RETCODE_IDX].value = umaxtostr (WTERMSIG (status), buf);
}
else

Return to:

Send suggestions and report system problems to the System administrator.