diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-07-30 17:22:57 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-07-30 17:22:57 +0000 |
commit | f1ba83833f0148c3b2004c274e71cdb16ca6dd88 (patch) | |
tree | e8e301327334fced4dd1ae85b241e390a7379a6a | |
parent | 8a7d1400e421da30923c26a114b4d89fc5d482e5 (diff) | |
download | fetchmail-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.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -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; } |