aboutsummaryrefslogtreecommitdiffstats
path: root/interface.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-08-17 17:51:32 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-08-17 17:51:32 +0000
commit7c3a0f3a090339ac22e2ace55eab03575f708273 (patch)
treeb5e6edf00583828f0083de4ccb18db25fa48c739 /interface.c
parent7785b91fb6a49cab6927634d2c1997b47a4bf406 (diff)
downloadfetchmail-7c3a0f3a090339ac22e2ace55eab03575f708273.tar.gz
fetchmail-7c3a0f3a090339ac22e2ace55eab03575f708273.tar.bz2
fetchmail-7c3a0f3a090339ac22e2ace55eab03575f708273.zip
Changes from the road.
svn path=/trunk/; revision=2540
Diffstat (limited to 'interface.c')
-rw-r--r--interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/interface.c b/interface.c
index a062f5dc..936b5bf9 100644
--- a/interface.c
+++ b/interface.c
@@ -488,7 +488,7 @@ int interface_approve(struct hostdata *hp)
* (c) newpacket count is greater than the old packet count,
* and the difference is large. Connection is live. Don't skip.
*/
- if (diff > 0 && diff <= MONITOR_SLOP)
+ if (diff >= 0 && diff <= MONITOR_SLOP)
{
(void) report(stdout,
_("skipping poll of %s, %s inactive\n"),
@@ -498,7 +498,7 @@ int interface_approve(struct hostdata *hp)
}
#ifdef ACTIVITY_DEBUG
- report(stdout _("activity on %s was %d, is %d"),
+ report(stdout, _("activity on %s was %d, is %d\n"),
hp->monitor, hp->monitor_io,
ifinfo.rx_packets + ifinfo.tx_packets);
#endif