diff src/lib-imap/imap-bodystructure.c @ 7226:e6693a0ec8e1 HEAD

Renamed T_FRAME_BEGIN/END to T_BEGIN/END. Removed T_FRAME() macro and replaced them with T_BEGIN/END calls. T_FRAME() made it difficult to debug code with gdb.
author Timo Sirainen <tss@iki.fi>
date Mon, 11 Feb 2008 20:17:00 +0200
parents 7ed926ed7aa4
children 81806d402514
line wrap: on
line diff
--- a/src/lib-imap/imap-bodystructure.c	Mon Feb 11 19:58:43 2008 +0200
+++ b/src/lib-imap/imap-bodystructure.c	Mon Feb 11 20:17:00 2008 +0200
@@ -267,9 +267,9 @@
 	part_data = part->context;
 
 	if (strncasecmp(hdr->name, "Content-", 8) == 0) {
-		T_FRAME(
+		T_BEGIN {
 			parse_content_header(part_data, hdr, pool);
-		);
+		} T_END;
 	}
 
 	if (parent_rfc822) {