diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-09-03 06:04:34 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-09-03 06:04:34 +0000 |
commit | 3097034142b8a8b1d66b538cf8962d5affec962b (patch) | |
tree | fd01815662514d7ad22761cf83697aa190999f9d /fetchmail.c | |
parent | bf173455c851f235ca99869c506e0251166a1aa2 (diff) | |
download | fetchmail-3097034142b8a8b1d66b538cf8962d5affec962b.tar.gz fetchmail-3097034142b8a8b1d66b538cf8962d5affec962b.tar.bz2 fetchmail-3097034142b8a8b1d66b538cf8962d5affec962b.zip |
UID fix.
svn path=/trunk/; revision=1278
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fetchmail.c b/fetchmail.c index 62c8a45e..2d862f84 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -418,11 +418,11 @@ int main (int argc, char **argv) querystatus = query_host(ctl); - if (querystatus == PS_SUCCESS) + if (querystatus == PS_SUCCESS) { successes++; - - if (!check_only) - update_str_lists(ctl); + if (!check_only) + update_str_lists(ctl); + } #ifdef linux if (ctl->server.monitor) { |