aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_l.l
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-02-26 22:09:12 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-02-26 22:09:12 +0000
commit6468431048a669d99c003b940474ec60a833afe1 (patch)
tree2154d5a6fcceb1f8a51eb143ae161c44f87291c9 /rcfile_l.l
parentfc659a867896396b1c338ae890b10cdeea13e703 (diff)
downloadfetchmail-6468431048a669d99c003b940474ec60a833afe1.tar.gz
fetchmail-6468431048a669d99c003b940474ec60a833afe1.tar.bz2
fetchmail-6468431048a669d99c003b940474ec60a833afe1.zip
MSGBUFSIZE everywhere.
svn path=/trunk/; revision=1678
Diffstat (limited to 'rcfile_l.l')
-rw-r--r--rcfile_l.l4
1 files changed, 2 insertions, 2 deletions
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);