diff options
author | Miroslav Lichvar <mlichvar@redhat.com> | 2010-12-26 18:10:29 +0000 |
---|---|---|
committer | Nigel Metheringham <nigel@exim.org> | 2010-12-26 18:10:29 +0000 |
commit | 57730b52dcfa2495c48407db6a5dfecf492d75b8 (patch) | |
tree | 3748df8abeb8f46393b8786257be503e21c28a34 | |
parent | 26959551d814815c763eef5cee98668a1713089d (diff) |
Fixes: bug #1002 - Message loss when using multiple deliveries
-rw-r--r-- | doc/doc-txt/ChangeLog | 2 | ||||
-rw-r--r-- | src/src/deliver.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog index 07501bb6c..cd0de35b7 100644 --- a/doc/doc-txt/ChangeLog +++ b/doc/doc-txt/ChangeLog @@ -108,6 +108,8 @@ DW/30 Allow TRUSTED_CONFIG_PREFIX_FILE only for Exim or CONFIGURE_OWNER, not DW/31 Turn TRUSTED_CONFIG_PREFIX_FILE into TRUSTED_CONFIG_FILE. No prefixes. +NM/01 Fixed bug #1002 - Message loss when using multiple deliveries + Exim version 4.72 ----------------- diff --git a/src/src/deliver.c b/src/src/deliver.c index 941fec043..668e4b2e5 100644 --- a/src/src/deliver.c +++ b/src/src/deliver.c @@ -624,7 +624,7 @@ for (dup = addr_duplicate; dup != NULL; dup = dup->next) { if (Ustrcmp(addr->unique, dup->unique) == 0) { - tree_add_nonrecipient(dup->address); + tree_add_nonrecipient(dup->unique); child_done(dup, now); } } |