[BACK]Return to xstd.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/Attic/xstd.c between version 1.7 and 1.8

version 1.7, 2009/03/06 14:13:47 version 1.8, 2009/03/08 11:41:22
Line 103  xstrlcpys(char *buf, const struct mdoc_node *n, size_t
Line 103  xstrlcpys(char *buf, const struct mdoc_node *n, size_t
   
         for ( ; n; n = n->next) {          for ( ; n; n = n->next) {
                 assert(MDOC_TEXT == n->type);                  assert(MDOC_TEXT == n->type);
                 p = n->data.text.string;                  p = n->string;
                 if ( ! xstrlcat(buf, p, sz))                  if ( ! xstrlcat(buf, p, sz))
                         return(0);                          return(0);
                 if (n->next && ! xstrlcat(buf, " ", sz))                  if (n->next && ! xstrlcat(buf, " ", sz))

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

CVSweb