From 338a6bc55b277598fb9e63a42f442d026b255e59 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sun, 7 Dec 2014 10:13:03 +0000 Subject: textual: improve error messages Use error printing facilities that add command name in front of the error message, and add explanation that is part of existing translations. Signed-off-by: Sami Kerola --- text-utils/more.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'text-utils/more.c') diff --git a/text-utils/more.c b/text-utils/more.c index a489953b5..8c0853c14 100644 --- a/text-utils/more.c +++ b/text-utils/more.c @@ -591,7 +591,7 @@ FILE *checkf(register char *fs, int *clearfirst) fflush(stdout); if (clreol) cleareol(); - perror(fs); + warn(_("stat failed %s"), fs); return ((FILE *)NULL); } if ((stbuf.st_mode & S_IFMT) == S_IFDIR) { @@ -600,7 +600,7 @@ FILE *checkf(register char *fs, int *clearfirst) } if ((f = Fopen(fs, "r")) == NULL) { fflush(stdout); - perror(fs); + warn(_("cannot open %s"), fs); return ((FILE *)NULL); } if (magic(f, fs)) { @@ -1781,10 +1781,8 @@ void initterm(void) int tgrp; /* Wait until we're in the foreground before we * save the terminal modes. */ - if ((tgrp = tcgetpgrp(fileno(stdout))) < 0) { - perror("tcgetpgrp"); - exit(EXIT_FAILURE); - } + if ((tgrp = tcgetpgrp(fileno(stdout))) < 0) + err(EXIT_FAILURE, "tcgetpgrp"); if (tgrp != getpgrp(0)) { kill(0, SIGTTOU); goto retry; -- cgit v1.2.3-55-g7522