summaryrefslogtreecommitdiffstats
path: root/action.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-02-27 10:55:16 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-02-27 10:55:16 +0000
commit69daad351ec2ab2069748a5a0139dae5f65642aa (patch)
treeedcb375f2efa22c6b45d526b4e34453dd6fb03fc /action.c
parent79f971e5f7cb6c69d1b2ed2d38a5bccd604a24f5 (diff)
downloadmandoc-69daad351ec2ab2069748a5a0139dae5f65642aa.tar.gz
Slowly decoupling mdoc(3) from being OpenBSD-only.VERSION.1.3.6
Diffstat (limited to 'action.c')
-rw-r--r--action.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/action.c b/action.c
index a6599ae2..a6842fb0 100644
--- a/action.c
+++ b/action.c
@@ -271,7 +271,7 @@ post_os(struct mdoc *mdoc)
if ( ! xstrlcats(buf, mdoc->last->child, 64))
return(mdoc_err(mdoc, "macro parameters too long"));
- mdoc->meta.os = xstrdup(buf[0] ? buf : "local");
+ mdoc->meta.os = xstrdup(buf[0] ? buf : "LOCAL");
mdoc->lastnamed = SEC_BODY;
return(post_prologue(mdoc));