From: Benno Schulenberg Date: Wed, 10 Aug 2011 19:13:44 +0000 (+0200) Subject: write: remove inconsistent periods from two error messages X-Git-Tag: v2.20-rc2~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1bf3e8a8eba0459606202f99c6c656164abfe566;p=thirdparty%2Futil-linux.git write: remove inconsistent periods from two error messages Signed-off-by: Benno Schulenberg --- diff --git a/term-utils/write.c b/term-utils/write.c index 88433620d3..b44f0e0184 100644 --- a/term-utils/write.c +++ b/term-utils/write.c @@ -143,7 +143,7 @@ int main(int argc, char **argv) exit(EXIT_FAILURE); if (!msgsok) errx(EXIT_FAILURE, - _("you have write permission turned off.")); + _("you have write permission turned off")); } else mytty = ""; @@ -161,7 +161,7 @@ int main(int argc, char **argv) argv[2] += 5; if (utmp_chk(argv[1], argv[2])) errx(EXIT_FAILURE, - _("%s is not logged in on %s."), + _("%s is not logged in on %s"), argv[1], argv[2]); if (term_chk(argv[2], &msgsok, &atime, 1)) exit(EXIT_FAILURE);