masqmail

diff src/header.c @ 415:0430194f7ef8

Debug message cosmetic.
author markus schnalke <meillo@marmaro.de>
date Wed, 29 Feb 2012 14:36:07 +0100
parents 028bc124d744
children
line diff
     1.1 --- a/src/header.c	Wed Feb 29 14:23:16 2012 +0100
     1.2 +++ b/src/header.c	Wed Feb 29 14:36:07 2012 +0100
     1.3 @@ -239,8 +239,8 @@
     1.4  		hdr->value = (*p) ? p : NULL;
     1.5  	}
     1.6  
     1.7 -	DEBUG(3) debugf("create_header(): hdr: `%s'\n", hdr->header);
     1.8 -	DEBUG(3) debugf("create_header(): val: `%s'\n", hdr->value);
     1.9 +	DEBUG(3) debugf("create_header():  %s", hdr->header);
    1.10 +	/* DEBUG(3) debugf("create_header(): val: `%s'\n", hdr->value); */
    1.11  
    1.12  	va_end(args);
    1.13  	return hdr;
    1.14 @@ -311,7 +311,7 @@
    1.15  	hdr->header = g_strdup(line);
    1.16  	hdr->value = hdr->header + (hdr->value - line);
    1.17  
    1.18 -	DEBUG(4) debugf("header: %d = %s[...]", hdr->id, hdr->header);
    1.19 +	DEBUG(4) debugf("header: %d = %s", hdr->id, hdr->header);
    1.20  	/* Note: This only outputs the first line if the header is folded */
    1.21  
    1.22  	return hdr;