Mercurial > masqmail
changeset 415:0430194f7ef8
Debug message cosmetic.
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Wed, 29 Feb 2012 14:36:07 +0100 (2012-02-29) |
parents | 309935f59820 |
children | ddac877ced95 |
files | src/header.c src/masqmail.c src/spool.c |
diffstat | 3 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/header.c Wed Feb 29 14:23:16 2012 +0100 +++ b/src/header.c Wed Feb 29 14:36:07 2012 +0100 @@ -239,8 +239,8 @@ hdr->value = (*p) ? p : NULL; } - DEBUG(3) debugf("create_header(): hdr: `%s'\n", hdr->header); - DEBUG(3) debugf("create_header(): val: `%s'\n", hdr->value); + DEBUG(3) debugf("create_header(): %s", hdr->header); + /* DEBUG(3) debugf("create_header(): val: `%s'\n", hdr->value); */ va_end(args); return hdr; @@ -311,7 +311,7 @@ hdr->header = g_strdup(line); hdr->value = hdr->header + (hdr->value - line); - DEBUG(4) debugf("header: %d = %s[...]", hdr->id, hdr->header); + DEBUG(4) debugf("header: %d = %s", hdr->id, hdr->header); /* Note: This only outputs the first line if the header is folded */ return hdr;
--- a/src/masqmail.c Wed Feb 29 14:23:16 2012 +0100 +++ b/src/masqmail.c Wed Feb 29 14:36:07 2012 +0100 @@ -720,7 +720,7 @@ exit(1); } - DEBUG(1) debugf("masqmail %s starting\n", VERSION); + DEBUG(1) debugf("----STARTING---- masqmail %s\n", VERSION); DEBUG(5) { gchar **str = argv;
--- a/src/spool.c Wed Feb 29 14:23:16 2012 +0100 +++ b/src/spool.c Wed Feb 29 14:36:07 2012 +0100 @@ -215,7 +215,7 @@ DEBUG(4) debugf("msg_spool_read():\n"); /* header spool: */ ok = spool_read_header(msg); - DEBUG(4) debugf(" spool_read_header() returned: %d\n", ok); + DEBUG(4) debugf("spool_read_header() returned: %d\n", ok); return msg; }