2
0
mirror of https://github.com/vdukhovni/postfix synced 2025-08-31 14:17:41 +00:00

postfix-2.12-20141208

This commit is contained in:
Wietse Venema
2014-12-08 00:00:00 -05:00
committed by Viktor Dukhovni
parent 1d39a1be26
commit 26a8f51271
3 changed files with 7 additions and 2 deletions

View File

@@ -21008,3 +21008,8 @@ Apologies for any names omitted.
Cleanup: removed unnecessary casts. File: global/cfg_parser.c. Cleanup: removed unnecessary casts. File: global/cfg_parser.c.
Cleanup: dont cast away "const". File: global/dict_sqlite.c. Cleanup: dont cast away "const". File: global/dict_sqlite.c.
20141208
Bugfix (introduced: 20141207): in new #ifdef, && should be ||.
File: smtpd.c.

View File

@@ -20,7 +20,7 @@
* 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 "20141207" #define MAIL_RELEASE_DATE "20141208"
#define MAIL_VERSION_NUMBER "2.12" #define MAIL_VERSION_NUMBER "2.12"
#ifdef SNAPSHOT #ifdef SNAPSHOT

View File

@@ -4625,7 +4625,7 @@ static void tls_reset(SMTPD_STATE *state)
#endif #endif
#if !defined(USE_TLS) && !defined(USE_SASL_AUTH) #if !defined(USE_TLS) || !defined(USE_SASL_AUTH)
/* unimpl_cmd - dummy for functionality that is not compiled in */ /* unimpl_cmd - dummy for functionality that is not compiled in */