=================================================================== RCS file: /cvs/mandoc/Attic/xstd.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- mandoc/Attic/xstd.c 2009/03/06 14:13:47 1.7 +++ mandoc/Attic/xstd.c 2009/03/08 11:41:22 1.8 @@ -1,4 +1,4 @@ -/* $Id: xstd.c,v 1.7 2009/03/06 14:13:47 kristaps Exp $ */ +/* $Id: xstd.c,v 1.8 2009/03/08 11:41:22 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -103,7 +103,7 @@ xstrlcpys(char *buf, const struct mdoc_node *n, size_t for ( ; n; n = n->next) { assert(MDOC_TEXT == n->type); - p = n->data.text.string; + p = n->string; if ( ! xstrlcat(buf, p, sz)) return(0); if (n->next && ! xstrlcat(buf, " ", sz)) @@ -114,7 +114,7 @@ xstrlcpys(char *buf, const struct mdoc_node *n, size_t } #ifdef __linux__ -/* $OpenBSD: xstd.c,v 1.7 2009/03/06 14:13:47 kristaps Exp $ */ +/* $OpenBSD: xstd.c,v 1.8 2009/03/08 11:41:22 kristaps Exp $ */ /* * Copyright (c) 1998 Todd C. Miller