diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-13 17:36:08 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-13 17:36:08 +0000 |
commit | e3ae6f9935a2f4b5304287eec6320a788a05b460 (patch) | |
tree | 2ed24ff07ba73e1a75da5b5763accce8a05a76c1 /fetchmail.c | |
parent | 528442d31852e40e55eb6bb85dd019f888ede21c (diff) | |
download | fetchmail-e3ae6f9935a2f4b5304287eec6320a788a05b460.tar.gz fetchmail-e3ae6f9935a2f4b5304287eec6320a788a05b460.tar.bz2 fetchmail-e3ae6f9935a2f4b5304287eec6320a788a05b460.zip |
Fix Ville Eeerola's bug.
svn path=/trunk/; revision=536
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index e16ff2b7..3cfe3466 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -380,7 +380,7 @@ int main (int argc, char **argv) { struct itimerval ntimeout; - ntimeout.it_interval.tv_sec = ntimeout.it_interval.tv_sec = 0; + ntimeout.it_interval.tv_sec = ntimeout.it_interval.tv_usec = 0; ntimeout.it_value.tv_sec = poll_interval; ntimeout.it_value.tv_usec = 0; |