changeset 342:eeb855e385ce HEAD

() was missing around envelope in body/bodystructure.
author Timo Sirainen <tss@iki.fi>
date Tue, 01 Oct 2002 13:58:16 +0300
parents 39e430a0d212
children c756ed5a0351
files src/lib-imap/imap-bodystructure.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib-imap/imap-bodystructure.c	Tue Oct 01 00:22:15 2002 +0300
+++ b/src/lib-imap/imap-bodystructure.c	Tue Oct 01 13:58:16 2002 +0300
@@ -293,8 +293,10 @@
 
 		t_string_append_c(str, ' ');
 		if (child_data != NULL && child_data->envelope != NULL) {
+			t_string_append_c(str, '(');
 			imap_envelope_write_part_data(child_data->envelope,
 						      str);
+			t_string_append_c(str, ')');
 		} else {
 			/* buggy message */
 			t_string_append(str, "NIL");