summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-07-19 06:05:16 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-07-19 06:05:16 +0000
commit2911006dcd808278e26b990dd26b268183fc27b4 (patch)
tree987ef2c8066de90b45e419ccceecab93993a392f /main.c
parent20a972b9c7a4dc0048c55dd8cb3a9bc426793851 (diff)
downloadmandoc-2911006dcd808278e26b990dd26b268183fc27b4.tar.gz
Do not fork and exec gunzip(1), just link with libz instead.
As discussed with deraadt@, that's cleaner and will help tame(2). Something like this was also suggested earlier by bapt at FreeBSD. Minus 50 lines of code, deleting one interface function (mparse_wait), no functional change intended.
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/main.c b/main.c
index 1ec130e9..a6587683 100644
--- a/main.c
+++ b/main.c
@@ -458,10 +458,6 @@ main(int argc, char *argv[])
passthrough(resp->file, fd,
conf.output.synopsisonly);
- rctmp = mparse_wait(curp.mp);
- if (rc < rctmp)
- rc = rctmp;
-
if (argc > 1 && curp.outtype <= OUTT_UTF8)
ascii_sepline(curp.outdata);
}