2
0
mirror of https://github.com/vdukhovni/postfix synced 2025-08-22 09:57:34 +00:00

postfix-2.8-20101007

This commit is contained in:
Wietse Venema 2010-10-07 00:00:00 -05:00 committed by Viktor Dukhovni
parent acd3f112c8
commit aa4db80cf9
3 changed files with 7 additions and 2 deletions

View File

@ -16072,3 +16072,7 @@ Apologies for any names omitted.
will no longer result in repeated delivery to other mailing
list members. Specify "reset_owner_alias = yes" for the
older behavior. File: local/alias.c.
20101007
Bugfix (introduced: 2100923): duplicate "PASS OLD" logging.

View File

@ -20,7 +20,7 @@
* Patches change both the patchlevel and the release date. Snapshots have no
* patchlevel; they change the release date only.
*/
#define MAIL_RELEASE_DATE "20101006"
#define MAIL_RELEASE_DATE "20101007"
#define MAIL_VERSION_NUMBER "2.8"
#ifdef SNAPSHOT

View File

@ -101,7 +101,8 @@ void ps_conclude(PS_STATE *state)
/*
* Log our final blessing when all unfinished tests were completed.
*/
if ((state->flags & PS_STATE_MASK_ANY_PASS) ==
if ((state->flags & PS_STATE_MASK_ANY_PASS) != 0
&& (state->flags & PS_STATE_MASK_ANY_PASS) ==
PS_STATE_FLAGS_TODO_TO_PASS(state->flags & PS_STATE_MASK_ANY_TODO))
msg_info("PASS %s %s", (state->flags & PS_STATE_FLAG_NEW) == 0 ?
"OLD" : "NEW", state->smtp_client_addr);