masqmail

diff src/smtp_in.c @ 208:3708b655a371

added newlines to the end of log and debug messages where missing
author meillo@marmaro.de
date Sun, 18 Jul 2010 21:49:15 +0200
parents 5745edd5b769
children 794071925a22
line diff
     1.1 --- a/src/smtp_in.c	Sun Jul 18 21:41:48 2010 +0200
     1.2 +++ b/src/smtp_in.c	Sun Jul 18 21:49:15 2010 +0200
     1.3 @@ -143,7 +143,7 @@
     1.4  		vsnprintf(buf, 255, fmt, args_copy);
     1.5  		va_end(args_copy);
     1.6  
     1.7 -		debugf(">>>%s", buf);
     1.8 +		debugf(">>>%s\n", buf);
     1.9  	}
    1.10  
    1.11  	vfprintf(out, fmt, args);
    1.12 @@ -360,7 +360,7 @@
    1.13  				if (pid == 0) {
    1.14  					_exit(deliver(msg));
    1.15  				} else if (pid < 0) {
    1.16 -					logwrite(LOG_ALERT, "could not fork for delivery, id = %s", msg->uid);
    1.17 +					logwrite(LOG_ALERT, "could not fork for delivery, id = %s\n", msg->uid);
    1.18  				}
    1.19  			}
    1.20  			psc->rcpt_seen = psc->from_seen = FALSE;