source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mdocml: Lifted 64-byte max width for Sh (now BUFSIZ).
@ 2010-05-24 12:31 kristaps
  0 siblings, 0 replies; only message in thread
From: kristaps @ 2010-05-24 12:31 UTC (permalink / raw)
  To: source

Log Message:
-----------
Lifted 64-byte max width for Sh (now BUFSIZ).

Modified Files:
--------------
    mdocml:
        mdoc_validate.c

Revision Data
-------------
Index: mdoc_validate.c
===================================================================
RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_validate.c,v
retrieving revision 1.80
retrieving revision 1.81
diff -Lmdoc_validate.c -Lmdoc_validate.c -u -p -r1.80 -r1.81
--- mdoc_validate.c
+++ mdoc_validate.c
@@ -23,6 +23,7 @@
 #include <assert.h>
 #include <ctype.h>
 #include <limits.h>
+#include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 
@@ -1224,7 +1225,7 @@ post_sh_body(POST_ARGS)
 static int
 post_sh_head(POST_ARGS)
 {
-	char		        buf[64];
+	char		        buf[BUFSIZ];
 	enum mdoc_sec	        sec;
 	const struct mdoc_node *n;
 
@@ -1246,13 +1247,13 @@ post_sh_head(POST_ARGS)
 		/* XXX - copied from compact(). */
 		assert(MDOC_TEXT == n->type);
 
-		if (strlcat(buf, n->string, 64) >= 64) {
+		if (strlcat(buf, n->string, BUFSIZ) >= BUFSIZ) {
 			mdoc_nmsg(mdoc, n, MANDOCERR_MEM);
 			return(0);
 		}
 		if (NULL == n->next)
 			continue;
-		if (strlcat(buf, " ", 64) >= 64) {
+		if (strlcat(buf, " ", BUFSIZ) >= BUFSIZ) {
 			mdoc_nmsg(mdoc, n, MANDOCERR_MEM);
 			return(0);
 		}
--
 To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-05-24 12:31 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-05-24 12:31 mdocml: Lifted 64-byte max width for Sh (now BUFSIZ) kristaps

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).