summaryrefslogtreecommitdiff
path: root/gnu/usr.sbin/sendmail/libmilter/sm_gethost.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2001-05-29 01:31:18 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2001-05-29 01:31:18 +0000
commita43a7ca4dc7606c388a34186760a9eca91a33369 (patch)
tree16c33e5ee191a654a204f515028eca089a4eaabb /gnu/usr.sbin/sendmail/libmilter/sm_gethost.c
parente07e9948e3071a8a12d05a1f9c284544f8955ad4 (diff)
Update to sendmail 8.11.4:
8.11.4 revamps signal handling within the MTA in order to reduce the likelihood of a race condition that can lead to heap corruption as described in Michal Zalewski's advisory. The problems discussed in the advisory are not currently known to be exploitable but we recommend upgrading to 8.11.4 in case a method is found to exploit the signal handling race condition. 8.11.4 also fixes other bugs found since the release of 8.11.3. See the RELEASE_NOTES file for more details.
Diffstat (limited to 'gnu/usr.sbin/sendmail/libmilter/sm_gethost.c')
-rw-r--r--gnu/usr.sbin/sendmail/libmilter/sm_gethost.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.sbin/sendmail/libmilter/sm_gethost.c b/gnu/usr.sbin/sendmail/libmilter/sm_gethost.c
index ce2813395fd..246b1947202 100644
--- a/gnu/usr.sbin/sendmail/libmilter/sm_gethost.c
+++ b/gnu/usr.sbin/sendmail/libmilter/sm_gethost.c
@@ -9,7 +9,7 @@
*/
#ifndef lint
-static char id[] = "@(#)$Sendmail: sm_gethost.c,v 8.7.8.6 2001/02/14 04:07:23 gshapiro Exp $";
+static char id[] = "@(#)$Sendmail: sm_gethost.c,v 8.7.8.10 2001/05/09 20:57:12 gshapiro Exp $";
#endif /* ! lint */
#if _FFR_MILTER
@@ -29,7 +29,7 @@ static char id[] = "@(#)$Sendmail: sm_gethost.c,v 8.7.8.6 2001/02/14 04:07:23 gs
** Support IPv6 as well as IPv4.
*/
-#if NETINET6 && NEEDSGETIPNODE && __RES < 19990909
+#if NETINET6 && NEEDSGETIPNODE
# ifndef AI_V4MAPPED
# define AI_V4MAPPED 0 /* dummy */
@@ -75,7 +75,7 @@ freehostent(h)
return;
}
# endif /* _FFR_FREEHOSTENT */
-#endif /* NEEDSGETIPNODE && NETINET6 && __RES < 19990909 */
+#endif /* NEEDSGETIPNODE && NETINET6 */
struct hostent *
mi_gethostbyname(name, family)