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 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;