diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-07-20 07:40:43 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-07-20 07:40:43 +0000 |
commit | 45fc85440cc55c05940a96f6a7be82f58528ed68 (patch) | |
tree | ab17d56e4456394263a39f245c6b59c6f22f7639 /checkalias.c | |
parent | a5bed21a467d56287d00307dca0f9465408f1363 (diff) | |
download | fetchmail-45fc85440cc55c05940a96f6a7be82f58528ed68.tar.gz fetchmail-45fc85440cc55c05940a96f6a7be82f58528ed68.tar.bz2 fetchmail-45fc85440cc55c05940a96f6a7be82f58528ed68.zip |
Eliminate some DNS round trips.
svn path=/trunk/; revision=1991
Diffstat (limited to 'checkalias.c')
-rw-r--r-- | checkalias.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/checkalias.c b/checkalias.c index 317cd2d1..eb045e37 100644 --- a/checkalias.c +++ b/checkalias.c @@ -121,12 +121,12 @@ int is_host_alias(const char *name, struct query *ctl) #else /* * The only code that calls the BIND library is here and in the - * start-of-query probe with gethostbyname(3). + * start-of-run probe with gethostbyname(3). * - * We know DNS service was up at the beginning of this poll cycle. + * We know DNS service was up at the beginning of the run. * If it's down, our nameserver has crashed. We don't want to try - * delivering the current message or anything else from this - * mailbox until it's back up. + * delivering the current message or anything else from the + * current server until it's back up. */ else if ((he = gethostbyname(name)) != (struct hostent *)NULL) { |