[exim-cvs] Oops, missed .c change in bug 1246 fix git commit

Top Page
Delete this message
Reply to this message
Author: Exim Git Commits Mailing List
Date:  
To: exim-cvs
Subject: [exim-cvs] Oops, missed .c change in bug 1246 fix git commit
Gitweb: http://git.exim.org/exim.git/commitdiff/c09405265ee0956a2c41c41f3ef408d3a03fcb8b
Commit:     c09405265ee0956a2c41c41f3ef408d3a03fcb8b
Parent:     12dd53c7a900b323936790a9e6fc4ae617920968
Author:     Phil Pennock <pdp@???>
AuthorDate: Sun May 13 04:18:55 2012 -0400
Committer:  Phil Pennock <pdp@???>
CommitDate: Sun May 13 04:18:55 2012 -0400


    Oops, missed .c change in bug 1246 fix git commit
---
 src/src/transport.c |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)


diff --git a/src/src/transport.c b/src/src/transport.c
index 0557318..1a70b6f 100644
--- a/src/src/transport.c
+++ b/src/src/transport.c
@@ -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. */