diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-09-05 19:04:32 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-09-05 19:04:32 +0000 |
commit | 260f2e066cce79f5a71b2e9d601cc914e803277b (patch) | |
tree | 6e3de306f181f91eff16082a786e3b92ff0dd059 | |
parent | bb47357c19cc54ef9144f4ce3858492ccd5c083c (diff) | |
download | fetchmail-260f2e066cce79f5a71b2e9d601cc914e803277b.tar.gz fetchmail-260f2e066cce79f5a71b2e9d601cc914e803277b.tar.bz2 fetchmail-260f2e066cce79f5a71b2e9d601cc914e803277b.zip |
Try to get better connection-failure messages.
svn path=/trunk/; revision=1309
-rw-r--r-- | driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -872,7 +872,7 @@ int num; /* index of message */ if ((smtp_open(ctl) == -1)) { free_str_list(&xmit_names); - error(0, -1, "SMTP connect to %s failed", + error(0, errno, "SMTP connect to %s failed", ctl->smtphost ? ctl->smtphost : "localhost"); return(PS_SMTP); } |