From acab50732fb7057448d3539e67c0082267a40193 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Wed, 9 Jul 2014 11:34:46 +0000 Subject: set a reasonable default for .Os --- cgi.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cgi.c') diff --git a/cgi.c b/cgi.c index 9457fe83..29baaa92 100644 --- a/cgi.c +++ b/cgi.c @@ -683,7 +683,8 @@ format(const struct req *req, const char *file) return; } - mp = mparse_alloc(MPARSE_SO, MANDOCLEVEL_FATAL, NULL, NULL); + mp = mparse_alloc(MPARSE_SO, MANDOCLEVEL_FATAL, NULL, + req->q.manroot); rc = mparse_readfd(mp, fd, file); close(fd); -- cgit