aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_l.l
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-26 22:21:16 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-26 22:21:16 +0000
commiteabdfb5e1ebf83147017c57db3659e7b2e8ecad1 (patch)
tree338308dc0519869dd03d3ae33071d3ef6fa8cd67 /rcfile_l.l
parentd59e69783b91feb5d3ee5d2ba802c279ecf021c5 (diff)
downloadfetchmail-eabdfb5e1ebf83147017c57db3659e7b2e8ecad1.tar.gz
fetchmail-eabdfb5e1ebf83147017c57db3659e7b2e8ecad1.tar.bz2
fetchmail-eabdfb5e1ebf83147017c57db3659e7b2e8ecad1.zip
gcc -Wall cleanup.
svn path=/trunk/; revision=396
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 6c71aedf..1653826f 100644
--- a/rcfile_l.l
+++ b/rcfile_l.l
@@ -72,14 +72,14 @@ options {/* EMPTY */}
yytext[strlen(yytext)-1] = '\0';
escapes(yytext+1, buf);
- yylval.sval = (char *) strdup(buf);
+ yylval.sval = (char *) xstrdup(buf);
return STRING;
}
[^;:, \t\r\n]+ {
char buf[POPBUFSIZE];
escapes(yytext, buf);
- yylval.sval = (char *) strdup(buf);
+ yylval.sval = (char *) xstrdup(buf);
return STRING;
}