From f12d116f994751f5bc64a3239c5c75658822bd2f Mon Sep 17 00:00:00 2001 From: Pav Lucistnik Date: Tue, 13 Sep 2005 20:25:54 +0000 Subject: - Update to 2.0.7 - Add patch for bug 266 - Reset maintainership (3 months of maintainer timeouts) - Assign maintainership to a volunteer PR: ports/85455, ports/85763 Submitted by: Mark Starovoytov Approved by: maintainer timeout (seanc; 14 days) --- mail/dbmail/files/patch-2.0.4_bug216_header.c | 37 --------------------------- 1 file changed, 37 deletions(-) delete mode 100644 mail/dbmail/files/patch-2.0.4_bug216_header.c (limited to 'mail/dbmail/files/patch-2.0.4_bug216_header.c') diff --git a/mail/dbmail/files/patch-2.0.4_bug216_header.c b/mail/dbmail/files/patch-2.0.4_bug216_header.c deleted file mode 100644 index d9610a5cd609..000000000000 --- a/mail/dbmail/files/patch-2.0.4_bug216_header.c +++ /dev/null @@ -1,37 +0,0 @@ -Index: header.c -=================================================================== ---- header.c (revision 1796) -+++ header.c (revision 1813) -@@ -176,15 +176,17 @@ - if (message_content[line_content_size] == '\n') { - tmp_line_size = line_content_size + 1; - tmp_line_rfcsize = tmp_line_size + 1; -- } else { -- if (message_content[line_content_size] == '\r' && -- message_content[line_content_size + 1] == '\n') { -+ } else if (message_content[line_content_size] == '\r') { -+ if (message_content[line_content_size + 1] == '\n') { -+ /* This is the right behaviour */ - tmp_line_size = line_content_size + 2; - tmp_line_rfcsize = tmp_line_size; - } else { -- trace(TRACE_ERROR, "%s,%s: error reading header line", -- __FILE__, __func__); -- return -1; -+ /* This is broken behaviour, but it's better -+ * than not handling it at all. -+ */ -+ tmp_line_size = line_content_size + 1; -+ tmp_line_rfcsize = tmp_line_size + 1; - } - } - } -@@ -197,7 +199,6 @@ - __FILE__, __func__); - return 0; - } -- else -- return 1; -+ return 1; - - } -- cgit v1.2.3