summaryrefslogtreecommitdiff
path: root/comsat
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2002-12-25 20:32:23 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2002-12-25 20:32:23 +0000
commit104f1b9d323db2f2f49bd5068e11cac8a31cc479 (patch)
tree1d8f0578fc48c829cdbfa9f47d7d2d8f0f5c66c5 /comsat
parentea59ad8066cde28b770a22bd634115e2d7bb6a4c (diff)
downloadmailutils-104f1b9d323db2f2f49bd5068e11cac8a31cc479.tar.gz
mailutils-104f1b9d323db2f2f49bd5068e11cac8a31cc479.tar.bz2
Do not include \r\n to the i18n strings.
Diffstat (limited to 'comsat')
-rw-r--r--comsat/action.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/comsat/action.c b/comsat/action.c
index 2c51b209b..cdcd4ed66 100644
--- a/comsat/action.c
+++ b/comsat/action.c
@@ -335,7 +335,8 @@ open_rc (const char *filename, FILE *tty)
}
if ((stb.st_mode & 0777) != 0600)
{
- fprintf (tty, _("Warning: your .biffrc has wrong permissions\r\n"));
+ fprintf (tty, "%s\r\n",
+ _("Warning: your .biffrc has wrong permissions"));
syslog (LOG_NOTICE, _("%s's %s has wrong permissions"),
username, filename);
return NULL;
@@ -393,7 +394,8 @@ run_user_action (FILE *tty, const char *cr, message_t msg)
}
else
{
- fprintf (tty, _(".biffrc:%d: unknown keyword\r\n"), line);
+ fprintf (tty, _(".biffrc:%d: unknown keyword"), line);
+ fprintf (tty, "\r\n");
syslog (LOG_ERR, _("%s:.biffrc:%d: unknown keyword %s"),
username, line, argv[0]);
break;

Return to:

Send suggestions and report system problems to the System administrator.