summaryrefslogtreecommitdiffstatshomepage
path: root/man.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-25 16:07:36 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-25 16:07:36 +0000
commitbd26da950b7144cb234ef8d0864173a897d2fd28 (patch)
treecd40d8e822f8edde6f380f6063d093ac0b8be1dd /man.c
parentc1e7dc6253e70fb184882bdb155d380f00698ce9 (diff)
downloadmandoc-bd26da950b7144cb234ef8d0864173a897d2fd28.tar.gz
mandoc-bd26da950b7144cb234ef8d0864173a897d2fd28.tar.zst
mandoc-bd26da950b7144cb234ef8d0864173a897d2fd28.zip
Actions in place for prologue parsing.
Diffstat (limited to 'man.c')
-rw-r--r--man.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/man.c b/man.c
index 0e272452..4b20b728 100644
--- a/man.c
+++ b/man.c
@@ -1,4 +1,4 @@
-/* $Id: man.c,v 1.5 2009/03/25 15:36:05 kristaps Exp $ */
+/* $Id: man.c,v 1.6 2009/03/25 16:07:36 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
*
@@ -133,8 +133,8 @@ man_free1(struct man *man)
man_node_freelist(man->first);
if (man->meta.title)
free(man->meta.title);
- if (man->meta.os)
- free(man->meta.os);
+ if (man->meta.source)
+ free(man->meta.source);
if (man->meta.vol)
free(man->meta.vol);
}