diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2021-10-15 15:04:02 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2021-10-15 15:04:02 +0000 |
commit | 8570d06222a4adf4bae9506c89bbc76dea96f962 (patch) | |
tree | cd7c780a04c3c9df9c2c5cfce54bc6919c5f3f78 /catman.c | |
parent | 34e1165534c6393d288e2ba6100a17f59739ebe3 (diff) | |
download | mandoc-8570d06222a4adf4bae9506c89bbc76dea96f962.tar.gz |
better error message if mandocd is not found
Diffstat (limited to 'catman.c')
-rw-r--r-- | catman.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -62,7 +62,7 @@ run_mandocd(int sockfd, const char *outtype, const char* defos) else execlp("mandocd", "mandocd", "-T", outtype, "-I", defos, sockfdstr, (char *)NULL); - err(1, "exec"); + err(1, "exec(mandocd)"); } ssize_t |