=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/main.c,v retrieving revision 1.142 retrieving revision 1.143 diff -c -r1.142 -r1.143 *** src/usr.bin/mandoc/main.c 2015/04/20 09:54:34 1.142 --- src/usr.bin/mandoc/main.c 2015/04/29 11:03:48 1.143 *************** *** 1,4 **** ! /* $OpenBSD: main.c,v 1.142 2015/04/20 09:54:34 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2010-2012, 2014, 2015 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: main.c,v 1.143 2015/04/29 11:03:48 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2010-2012, 2014, 2015 Ingo Schwarze *************** *** 1002,1008 **** /* Hand over to the pager. */ execvp(argv[0], argv); ! fprintf(stderr, "%s: exec: %s\n", ! progname, strerror(errno)); exit((int)MANDOCLEVEL_SYSERR); } --- 1002,1008 ---- /* Hand over to the pager. */ execvp(argv[0], argv); ! fprintf(stderr, "%s: exec %s: %s\n", ! progname, argv[0], strerror(errno)); exit((int)MANDOCLEVEL_SYSERR); }