diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-11-20 20:47:17 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-11-20 20:47:17 +0000 |
commit | 29b9dc79d6a307d6761e936424b7b83cd91ea5a2 (patch) | |
tree | 6515eb8d6291966a09085f785fbbb6d3dc13c8e9 /fetchmail.c | |
parent | 3644b17d50685b5d9bd7aeb7a7a7a3d2e0784388 (diff) | |
download | fetchmail-29b9dc79d6a307d6761e936424b7b83cd91ea5a2.tar.gz fetchmail-29b9dc79d6a307d6761e936424b7b83cd91ea5a2.tar.bz2 fetchmail-29b9dc79d6a307d6761e936424b7b83cd91ea5a2.zip |
Comment fix.
svn path=/trunk/; revision=2191
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/fetchmail.c b/fetchmail.c index b36c2d83..df09ca1c 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -626,15 +626,16 @@ int main (int argc, char **argv) if (!getuid()) signal(SIGHUP, donothing); - /* - * We can't use sleep(3) here because we need an alarm(3) - * equivalent in order to implement server nonresponse timeout. - * We'll just assume setitimer(2) is available since fetchmail - * has to have a BSDoid socket layer to work at all. - */ + /* time for a pause in the action... */ { #ifndef __EMX__ #ifdef SLEEP_WITH_ALARM /* not normally on */ + /* + * We can't use sleep(3) here because we need an alarm(3) + * equivalent in order to implement server nonresponse timeout. + * We'll just assume setitimer(2) is available since fetchmail + * has to have a BSDoid socket layer to work at all. + */ /* * This code stopped working under glibc-2, apparently due * to the change in signal(2) semantics. (The siginterrupt |