2
0
mirror of https://github.com/vdukhovni/postfix synced 2025-08-29 13:18:12 +00:00

postfix-2.3.11

This commit is contained in:
Wietse Venema 2007-05-31 00:00:00 -05:00 committed by Viktor Dukhovni
parent b8710b0bee
commit 3758992dd8
4 changed files with 12 additions and 2 deletions

View File

@ -13039,3 +13039,9 @@ Apologies for any names omitted.
to fail when the machine name is not found in /etc/hosts, to fail when the machine name is not found in /etc/hosts,
or that cause Postfix processes to hang when the network or that cause Postfix processes to hang when the network
is down. is down.
20070531
Portability: Victor helpfully pointed out that change
20070425 broke on non-IPv6 systems. Files: smtpd/smtpd_peer.c,
qmqpd/qmqpd_peer.c.

View File

@ -20,8 +20,8 @@
* Patches change both the patchlevel and the release date. Snapshots have no * Patches change both the patchlevel and the release date. Snapshots have no
* patchlevel; they change the release date only. * patchlevel; they change the release date only.
*/ */
#define MAIL_RELEASE_DATE "20070530" #define MAIL_RELEASE_DATE "20070531"
#define MAIL_VERSION_NUMBER "2.3.10" #define MAIL_VERSION_NUMBER "2.3.11"
#ifdef SNAPSHOT #ifdef SNAPSHOT
# define MAIL_VERSION_DATE "-" MAIL_RELEASE_DATE # define MAIL_VERSION_DATE "-" MAIL_RELEASE_DATE

View File

@ -122,7 +122,9 @@ void qmqpd_peer_init(QMQPD_STATE *state)
*/ */
if (strchr((char *) proto_info->sa_family_list, sa->sa_family) == 0) if (strchr((char *) proto_info->sa_family_list, sa->sa_family) == 0)
msg_fatal("cannot handle socket type %s with \"%s = %s\"", msg_fatal("cannot handle socket type %s with \"%s = %s\"",
#ifdef AF_INET6
sa->sa_family == AF_INET6 ? "AF_INET6" : sa->sa_family == AF_INET6 ? "AF_INET6" :
#endif
sa->sa_family == AF_INET ? "AF_INET" : sa->sa_family == AF_INET ? "AF_INET" :
"other", VAR_INET_PROTOCOLS, var_inet_protocols); "other", VAR_INET_PROTOCOLS, var_inet_protocols);

View File

@ -189,7 +189,9 @@ void smtpd_peer_init(SMTPD_STATE *state)
*/ */
if (strchr((char *) proto_info->sa_family_list, sa->sa_family) == 0) if (strchr((char *) proto_info->sa_family_list, sa->sa_family) == 0)
msg_fatal("cannot handle socket type %s with \"%s = %s\"", msg_fatal("cannot handle socket type %s with \"%s = %s\"",
#ifdef AF_INET6
sa->sa_family == AF_INET6 ? "AF_INET6" : sa->sa_family == AF_INET6 ? "AF_INET6" :
#endif
sa->sa_family == AF_INET ? "AF_INET" : sa->sa_family == AF_INET ? "AF_INET" :
"other", VAR_INET_PROTOCOLS, var_inet_protocols); "other", VAR_INET_PROTOCOLS, var_inet_protocols);