Kill whitespace at eol.
authorsunil <sunil@openbsd.org>
Mon, 19 Oct 2015 09:15:35 +0000 (09:15 +0000)
committersunil <sunil@openbsd.org>
Mon, 19 Oct 2015 09:15:35 +0000 (09:15 +0000)
Ok gilles@

usr.sbin/smtpd/delivery_lmtp.c

index 52b01be..7d357be 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: delivery_lmtp.c,v 1.11 2015/10/18 18:59:51 jung Exp $ */
+/* $OpenBSD: delivery_lmtp.c,v 1.12 2015/10/19 09:15:35 sunil Exp $ */
 
 /*
  * Copyright (c) 2013 Ashish SHUKLA <ashish.is@lostca.se>
@@ -150,10 +150,10 @@ lmtp_open(struct deliver *deliver)
                errx(1, "Invalid DATA reply: %s", buf);
 
        while ((len = getline(&buf, &sz, stdin)) != -1) {
-               if (len >= 2 && buf[len - 2] == '\r')                    
-                       buf[len - 2] = '\0';                             
-               else if (buf[len - 1] == '\n')                           
-                       buf[len - 1] = '\0';  
+               if (len >= 2 && buf[len - 2] == '\r')
+                       buf[len - 2] = '\0';
+               else if (buf[len - 1] == '\n')
+                       buf[len - 1] = '\0';
 
                if (fprintf(fp, "%s%s\r\n", buf[0] == '.' ? "." : "", buf) < 0)
                        errx(1, "fprintf failed");