aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cgi.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-04-18 16:06:39 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-04-18 16:06:39 +0000
commit90913383a1a42f4ed3816d5206553df9db14e839 (patch)
tree0e3fb00ff7803497b660d3b23646ab4b955be4f3 /cgi.c
parent98e0e3ab0d2ae5d7be8016bbad59fa3a08d34b66 (diff)
downloadmandoc-90913383a1a42f4ed3816d5206553df9db14e839.tar.gz
mandoc-90913383a1a42f4ed3816d5206553df9db14e839.tar.zst
mandoc-90913383a1a42f4ed3816d5206553df9db14e839.zip
Replace the structs mdoc and man by a unified struct roff_man.
Almost completely mechanical, no functional change. Written on the train from Exeter to London returning from p2k15.
Diffstat (limited to 'cgi.c')
-rw-r--r--cgi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cgi.c b/cgi.c
index 402be8f9..e3136c9a 100644
--- a/cgi.c
+++ b/cgi.c
@@ -1,4 +1,4 @@
-/* $Id: cgi.c,v 1.106 2015/03/27 21:33:20 schwarze Exp $ */
+/* $Id: cgi.c,v 1.107 2015/04/18 16:06:39 schwarze Exp $ */
/*
* Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@usta.de>
@@ -819,8 +819,8 @@ format(const struct req *req, const char *file)
struct manoutput conf;
struct mparse *mp;
struct mchars *mchars;
- struct mdoc *mdoc;
- struct man *man;
+ struct roff_man *mdoc;
+ struct roff_man *man;
void *vp;
int fd;
int usepath;