diff src/spool.c @ 235:92063f90f9be

removed additional new lines at the end of debug messages the strings printed to the end of the line contain a new line already
author markus schnalke <meillo@marmaro.de>
date Fri, 22 Oct 2010 11:09:57 -0300
parents 3708b655a371
children 5a0e8ed56c2a
line wrap: on
line diff
--- a/src/spool.c	Fri Oct 22 11:06:09 2010 -0300
+++ b/src/spool.c	Fri Oct 22 11:09:57 2010 -0300
@@ -146,7 +146,7 @@
 			break;
 		} else if (strncasecmp(buf, "MF:", 3) == 0) {
 			msg->return_path = create_address(&(buf[3]), TRUE);
-			DEBUG(3) debugf("spool_read: MAIL FROM: %s\n", msg->return_path->address);
+			DEBUG(3) debugf("spool_read: MAIL FROM: %s", msg->return_path->address);
 		} else if (strncasecmp(buf, "RT:", 3) == 0) {
 			address *addr;
 			addr = spool_scan_rcpt(buf);