aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_y.y
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-01-05 05:01:19 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-01-05 05:01:19 +0000
commit3e4f77cb7ebef5b4e119c43bc91e85477a3ac20e (patch)
treed8e71ced611c1fd8b245674a3b09f6050df72e5c /rcfile_y.y
parentb476ac337200fe5ed62494feb1280652eae57025 (diff)
downloadfetchmail-3e4f77cb7ebef5b4e119c43bc91e85477a3ac20e.tar.gz
fetchmail-3e4f77cb7ebef5b4e119c43bc91e85477a3ac20e.tar.bz2
fetchmail-3e4f77cb7ebef5b4e119c43bc91e85477a3ac20e.zip
Progress messages now go to stdout.
svn path=/trunk/; revision=2329
Diffstat (limited to 'rcfile_y.y')
-rw-r--r--rcfile_y.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/rcfile_y.y b/rcfile_y.y
index 7f36b3dd..54f1b534 100644
--- a/rcfile_y.y
+++ b/rcfile_y.y
@@ -345,7 +345,7 @@ static struct query *hosttail; /* where to add new elements */
void yyerror (const char *s)
/* report a syntax error */
{
- error_at_line( 0, 0, rcfile, prc_lineno, "%s at %s", s,
+ report_at_line(stderr, 0, rcfile, prc_lineno, "%s at %s", s,
(yytext && yytext[0]) ? yytext : "end of input");
prc_errflag++;
}