Oops, missed .c change in bug 1246 fix git commit
authorPhil Pennock <pdp@exim.org>
Sun, 13 May 2012 08:18:55 +0000 (04:18 -0400)
committerPhil Pennock <pdp@exim.org>
Sun, 13 May 2012 08:18:55 +0000 (04:18 -0400)
src/src/transport.c

index 0557318d0dea5ddc98b649046d4d20a771d3e00a..1a70b6f32b19c47fb70f8143450c4377312e828f 100644 (file)
@@ -919,19 +919,19 @@ if ((options & topt_no_body) == 0)
       }
     }
 
-  /* Finished with the check string */
-
-  nl_check_length = nl_escape_length = 0;
-
   /* A read error on the body will have left len == -1 and errno set. */
 
   if (len != 0) return FALSE;
+  }
 
-  /* If requested, add a terminating "." line (SMTP output). */
+/* Finished with the check string */
 
-  if ((options & topt_end_dot) != 0 && !write_chunk(fd, US".\n", 2, use_crlf))
-    return FALSE;
-  }
+nl_check_length = nl_escape_length = 0;
+
+/* If requested, add a terminating "." line (SMTP output). */
+
+if ((options & topt_end_dot) != 0 && !write_chunk(fd, US".\n", 2, use_crlf))
+  return FALSE;
 
 /* Write out any remaining data in the buffer before returning. */