Fix broken EXPERIMENTAL_DSN compile
authorJeremy Harris <jgh146exb@wizmail.org>
Sat, 2 Aug 2014 10:26:11 +0000 (11:26 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Sat, 2 Aug 2014 11:33:54 +0000 (12:33 +0100)
src/src/deliver.c

index b0b4601dc3575df6188bec955dfc2f9a93999b2c..87b54d88e900b9ab88263c62445560bb17b2c38d 100644 (file)
@@ -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);