From 104f1b9d323db2f2f49bd5068e11cac8a31cc479 Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Wed, 25 Dec 2002 20:32:23 +0000 Subject: Do not include \r\n to the i18n strings. --- comsat/action.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'comsat/action.c') 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; -- cgit v1.2.1