diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-10-17 15:10:42 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-10-17 15:10:42 +0000 |
commit | 25844176b66a992b42041fd07bf14096f3d2ad02 (patch) | |
tree | 9cfe4ceaa0ec54da911b2eee4b90bf98ee142c09 /checkalias.c | |
parent | b7356877e3484f1bdb40c60dae17b85a365eb434 (diff) | |
download | fetchmail-25844176b66a992b42041fd07bf14096f3d2ad02.tar.gz fetchmail-25844176b66a992b42041fd07bf14096f3d2ad02.tar.bz2 fetchmail-25844176b66a992b42041fd07bf14096f3d2ad02.zip |
Introduced O_DEBUG.
svn path=/trunk/; revision=2102
Diffstat (limited to 'checkalias.c')
-rw-r--r-- | checkalias.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/checkalias.c b/checkalias.c index a111a39f..5d515cfc 100644 --- a/checkalias.c +++ b/checkalias.c @@ -140,15 +140,15 @@ int is_host_alias(const char *name, struct query *ctl) goto match; else if (((he_st = gethostbyname(ctl->server.truename)) != (struct hostent *)NULL) && ctl->server.checkalias) { - if (outlevel == O_VERBOSE) + if (outlevel >= O_VERBOSE) error(0, 0, "Checking if %s is really the same node as %s",ctl->server.truename,name); if (is_ip_alias(ctl->server.truename,name) == TRUE) { - if (outlevel == O_VERBOSE) + if (outlevel >= O_VERBOSE) error(0, 0, "Yes, their IP addresses match"); goto match; } - if (outlevel == O_VERBOSE) + if (outlevel >= O_VERBOSE) error(0, 0, "No, their IP addresses don't match"); } else |