diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-02-24 05:40:32 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-02-24 05:40:32 +0000 |
commit | 8b7ee19f2fced504bdda7aa6708771140b7d4120 (patch) | |
tree | 8e58986e1627fff45a68a133f043e47dd54882ab /driver.c | |
parent | 47d3730bd7b8cfaf8eae00ad57caf3fc78dc944f (diff) | |
download | fetchmail-8b7ee19f2fced504bdda7aa6708771140b7d4120.tar.gz fetchmail-8b7ee19f2fced504bdda7aa6708771140b7d4120.tar.bz2 fetchmail-8b7ee19f2fced504bdda7aa6708771140b7d4120.zip |
Fix for the attempted fix.
svn path=/trunk/; revision=2770
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1415,7 +1415,7 @@ static void send_size_warnings(struct query *ctl) nbr = current->val.status.mark; size = atoi(current->id); stuff_warning(ctl, - _("\t%d msg %d octets long skipped by fetchmail.\n"), + _("\t%d msg %d octets long skipped by fetchmail.\r\n"), nbr, size); } current->val.status.num++; @@ -1597,7 +1597,7 @@ const int maxfetch; /* maximum number of messages to fetch */ * in daemon mode but the connection to the outside world * is down. */ - if (!((err_no == EHOSTUNREACH || err_no == EHOSTUNREACH) + if (!((err_no == EHOSTUNREACH || err_no == ENETUNREACH) && run.poll_interval)) { report_build(stderr, _("fetchmail: %s connection to %s failed"), |