diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2015-07-27 20:26:04 +0200 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2015-07-28 08:00:03 +0000 |
commit | 783fae5645874176e971fd32646f5f14dbb859bd (patch) | |
tree | f2e1d49bc76197a8da2bf246f55cf40cb658f647 /main/ssmtp/inet6-getaddrinfo.patch | |
parent | bfa8500e0263401e34fef51cc340714faab65ea5 (diff) | |
download | aports-783fae5645874176e971fd32646f5f14dbb859bd.tar.bz2 aports-783fae5645874176e971fd32646f5f14dbb859bd.tar.xz |
main/ssmtp: fix usage of getaddrinfo
Diffstat (limited to 'main/ssmtp/inet6-getaddrinfo.patch')
-rw-r--r-- | main/ssmtp/inet6-getaddrinfo.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/main/ssmtp/inet6-getaddrinfo.patch b/main/ssmtp/inet6-getaddrinfo.patch new file mode 100644 index 0000000000..bbc2d90ba8 --- /dev/null +++ b/main/ssmtp/inet6-getaddrinfo.patch @@ -0,0 +1,12 @@ +diff -up ssmtp.orig/ssmtp.c ssmtp/ssmtp.c +--- ssmtp.orig/ssmtp.c 2009-11-23 10:55:11.000000000 +0100 ++++ ssmtp/ssmtp.c 2015-07-27 17:34:12.498140804 +0200 +@@ -1157,7 +1157,7 @@ int smtp_open(char *host, int port) + snprintf(servname, sizeof(servname), "%d", port); + + /* Check we can reach the host */ +- if (getaddrinfo(host, servname, &hints, &ai0)) { ++ if (getaddrinfo(host, servname, &hints, &ai0) != 0) { + log_event(LOG_ERR, "Unable to locate %s", host); + return(-1); + } |