From dacabbc8d532b3981ee2fd9502bcc9aacbfd9d01 Mon Sep 17 00:00:00 2001 From: Dirk Meyer Date: Thu, 3 May 2001 15:39:07 +0000 Subject: New patch: The socket was IPv6, but the bind used an IPv4 sockaddr struct. Submitted by: Sean Farley --- mail/sendmail812/files/patch-ab | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 mail/sendmail812/files/patch-ab (limited to 'mail/sendmail812') diff --git a/mail/sendmail812/files/patch-ab b/mail/sendmail812/files/patch-ab new file mode 100644 index 000000000000..44ece767ae5c --- /dev/null +++ b/mail/sendmail812/files/patch-ab @@ -0,0 +1,11 @@ +--- sendmail/daemon.c.orig Fri Apr 27 14:27:51 2001 ++++ sendmail/daemon.c Fri Apr 27 14:28:14 2001 +@@ -2012,7 +2012,7 @@ + } + else + { +- s = socket(addr.sa.sa_family, SOCK_STREAM, 0); ++ s = socket(clt_addr.sa.sa_family, SOCK_STREAM, 0); + } + if (s < 0) + { -- cgit v1.2.3