aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-02-18 03:57:19 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-02-18 03:57:19 +0000
commite70d6db9a9513c6e2040f118264b1dd606ca5fe6 (patch)
tree3f0c631bae6e5b01903c5b006fe43dc2ab59192e /driver.c
parent87e5598795b289a87f80ff147bebb6753c9ff73e (diff)
downloadfetchmail-e70d6db9a9513c6e2040f118264b1dd606ca5fe6.tar.gz
fetchmail-e70d6db9a9513c6e2040f118264b1dd606ca5fe6.tar.bz2
fetchmail-e70d6db9a9513c6e2040f118264b1dd606ca5fe6.zip
Dave Bodenstab's error-message corrections.
svn path=/trunk/; revision=900
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver.c b/driver.c
index 98669ecf..a21d7915 100644
--- a/driver.c
+++ b/driver.c
@@ -1132,7 +1132,7 @@ const struct method *proto; /* protocol method table */
#ifndef EHOSTUNREACH
#define EHOSTUNREACH (-1)
#endif
- if (errno != EHOSTUNREACH)
+ if (outlevel == O_VERBOSE || errno != EHOSTUNREACH)
error(0, errno, "connecting to host");
ok = PS_SOCKET;
goto closeUp;