[exim-cvs] Fix broken EXPERIMENTAL_DSN compile

Góra strony
Delete this message
Reply to this message
Autor: Exim Git Commits Mailing List
Data:  
Dla: exim-cvs
Temat: [exim-cvs] Fix broken EXPERIMENTAL_DSN compile
Gitweb: http://git.exim.org/exim.git/commitdiff/8864c2c44f08ddca092d70135843fc69cd95f178
Commit:     8864c2c44f08ddca092d70135843fc69cd95f178
Parent:     3914a2b49c99581097e96e00430141613e99fb0d
Author:     Jeremy Harris <jgh146exb@???>
AuthorDate: Sat Aug 2 11:26:11 2014 +0100
Committer:  Jeremy Harris <jgh146exb@???>
CommitDate: Sat Aug 2 12:33:54 2014 +0100


    Fix broken EXPERIMENTAL_DSN compile
---
 src/src/deliver.c |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)


diff --git a/src/src/deliver.c b/src/src/deliver.c
index b0b4601..87b54d8 100644
--- a/src/src/deliver.c
+++ b/src/src/deliver.c
@@ -6511,8 +6511,8 @@ if (addr_senddsn != NULL)
     "Content-type: text/plain; charset=us-ascii\n\n"


     "This message was created automatically by mail delivery software.\n"
-    " ----- The following addresses had successful delivery notifications -----\n"
-      qualify_domain_sender, sender_addres, boundaryStrs, boundarySt);
+    " ----- The following addresses had successful delivery notifications -----\n",
+      qualify_domain_sender, sender_address, boundaryStr, boundaryStr);


     addr_dsntmp = addr_senddsn;
     while(addr_dsntmp)
@@ -6944,8 +6944,9 @@ wording. */
       for (addr = handled_addr; addr; addr = addr->next)
         {
         fprintf(f, "Action: failed\n"
-        "Final-Recipient: rfc822;%s\n", addr->address
-        "Status: 5.0.0\n");
+        "Final-Recipient: rfc822;%s\n"
+        "Status: 5.0.0\n",
+        addr->address);
         if (addr->host_used && addr->host_used->name)
           fprintf(f, "Remote-MTA: dns; %s\nDiagnostic-Code: smtp; %d\n",
         addr->host_used->name, addr->basic_errno);