diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-02-18 03:57:19 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-02-18 03:57:19 +0000 |
commit | e70d6db9a9513c6e2040f118264b1dd606ca5fe6 (patch) | |
tree | 3f0c631bae6e5b01903c5b006fe43dc2ab59192e /driver.c | |
parent | 87e5598795b289a87f80ff147bebb6753c9ff73e (diff) | |
download | fetchmail-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |