From 6468431048a669d99c003b940474ec60a833afe1 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 26 Feb 1998 22:09:12 +0000 Subject: MSGBUFSIZE everywhere. svn path=/trunk/; revision=1678 --- rcfile_l.l | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rcfile_l.l') diff --git a/rcfile_l.l b/rcfile_l.l index 465094ba..4d19be59 100644 --- a/rcfile_l.l +++ b/rcfile_l.l @@ -110,7 +110,7 @@ remote(folder)? { [0-9]+ { yylval.number = atoi(yytext); return NUMBER; } \"[^\"]*\" { - char buf[POPBUFSIZE]; + char buf[MSGBUFSIZE]; yytext[strlen(yytext)-1] = '\0'; escapes(yytext+1, buf); @@ -118,7 +118,7 @@ remote(folder)? { return STRING; } [^=;:, \t\r\n]+ { - char buf[POPBUFSIZE]; + char buf[MSGBUFSIZE]; escapes(yytext, buf); yylval.sval = (char *) xstrdup(buf); -- cgit v1.2.3