aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2005-07-30 17:22:57 +0000
committerMatthias Andree <matthias.andree@gmx.de>2005-07-30 17:22:57 +0000
commitf1ba83833f0148c3b2004c274e71cdb16ca6dd88 (patch)
treee8e301327334fced4dd1ae85b241e390a7379a6a
parent8a7d1400e421da30923c26a114b4d89fc5d482e5 (diff)
downloadfetchmail-f1ba83833f0148c3b2004c274e71cdb16ca6dd88.tar.gz
fetchmail-f1ba83833f0148c3b2004c274e71cdb16ca6dd88.tar.bz2
fetchmail-f1ba83833f0148c3b2004c274e71cdb16ca6dd88.zip
Remove check for HAVE_ERROR macro which is always false, along with dead code.
svn path=/trunk/; revision=4189
-rw-r--r--netrc.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/netrc.c b/netrc.c
index 1eaf85df..3c76595f 100644
--- a/netrc.c
+++ b/netrc.c
@@ -213,15 +213,9 @@ parse_netrc (file)
if (premature_token)
{
-#ifdef HAVE_ERROR
- error_at_line (0, file, ln,
- GT_("warning: found \"%s\" before any host names"),
- premature_token);
-#else
fprintf (stderr,
GT_("%s:%d: warning: found \"%s\" before any host names\n"),
file, ln, premature_token);
-#endif
premature_token = NULL;
}