From c2bcbe20d113563a876c2a05d25b1a2898bac5eb Mon Sep 17 00:00:00 2001 From: Philip Hazel Date: Tue, 21 Dec 2004 14:38:02 +0000 Subject: [PATCH] (1) Doubled size of debug_buffer. (2) Output from SpamAssassin test changed because 96 hours have passed. Shows up the difficulty of testing such things... --- doc/doc-txt/ChangeLog | 5 ++++- src/src/debug.c | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog index 348f15b03..a0e85bee3 100644 --- a/doc/doc-txt/ChangeLog +++ b/doc/doc-txt/ChangeLog @@ -1,4 +1,4 @@ -$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.54 2004/12/21 13:59:15 ph10 Exp $ +$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.55 2004/12/21 14:38:02 ph10 Exp $ Change log file for Exim from version 4.21 ------------------------------------------- @@ -241,6 +241,9 @@ Exim version 4.50 56. Improve error message when ldap_search() fails in OpenLDAP or Solaris LDAP. +57. Double the size of the debug message buffer (to 2048) so that more of very + long debug lines gets shown. + Exim version 4.43 ----------------- diff --git a/src/src/debug.c b/src/src/debug.c index 3128b545f..15b7917b1 100644 --- a/src/src/debug.c +++ b/src/src/debug.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/debug.c,v 1.1 2004/10/07 10:39:01 ph10 Exp $ */ +/* $Cambridge: exim/src/src/debug.c,v 1.2 2004/12/21 14:38:02 ph10 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -10,7 +10,7 @@ #include "exim.h" -static uschar debug_buffer[1024]; +static uschar debug_buffer[2048]; static uschar *debug_ptr = debug_buffer; static int debug_prefix_length = 0; -- 2.30.2