diff options
author | 2015-04-18 16:04:40 +0000 | |
---|---|---|
committer | 2015-04-18 16:04:40 +0000 | |
commit | ede1b9d0649da5ccb8121a22b29e35a968495858 (patch) | |
tree | a005c46b30f7589352b86b3bd7d91c7a882e3e6d /usr.bin/mandoc/cgi.c | |
parent | another round of reducing the diff to linux (diff) | |
download | wireguard-openbsd-ede1b9d0649da5ccb8121a22b29e35a968495858.tar.xz wireguard-openbsd-ede1b9d0649da5ccb8121a22b29e35a968495858.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 'usr.bin/mandoc/cgi.c')
-rw-r--r-- | usr.bin/mandoc/cgi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mandoc/cgi.c b/usr.bin/mandoc/cgi.c index b26cc41d76e..7adef3aa648 100644 --- a/usr.bin/mandoc/cgi.c +++ b/usr.bin/mandoc/cgi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cgi.c,v 1.45 2015/03/27 21:17:16 schwarze Exp $ */ +/* $OpenBSD: cgi.c,v 1.46 2015/04/18 16:04:40 schwarze Exp $ */ /* * Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@usta.de> @@ -817,8 +817,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; |