summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-06-21 22:24:01 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-06-21 22:24:01 +0000
commitde464cf7824c34781440095d8a6d06c2510d0550 (patch)
treec2037588fb7f41a8e5742a71fab92b4f95919fa6 /main.c
parentfc390ff3f226de8ab205d632e190100023030fef (diff)
downloadmandoc-de464cf7824c34781440095d8a6d06c2510d0550.tar.gz
Reduce the verbosity of error messages caused by open(2) failures.
Suggested by and ok jmc@.
Diffstat (limited to 'main.c')
-rw-r--r--main.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/main.c b/main.c
index c6c92386..73ab9e81 100644
--- a/main.c
+++ b/main.c
@@ -411,14 +411,17 @@ static void
mmsg(enum mandocerr t, enum mandoclevel lvl,
const char *file, int line, int col, const char *msg)
{
+ const char *mparse_msg;
fprintf(stderr, "%s: %s:", progname, file);
if (line)
fprintf(stderr, "%d:%d:", line, col + 1);
- fprintf(stderr, " %s: %s", mparse_strlevel(lvl),
- mparse_strerror(t));
+ fprintf(stderr, " %s", mparse_strlevel(lvl));
+
+ if (NULL != (mparse_msg = mparse_strerror(t)))
+ fprintf(stderr, ": %s", mparse_msg);
if (msg)
fprintf(stderr, ": %s", msg);