From 83e11d00e0583100566e2e2f3062f5e29c8ab87f Mon Sep 17 00:00:00 2001 From: Michael Haardt Date: Tue, 30 Dec 2008 13:12:02 +0000 Subject: [PATCH] util-spool_in.c references in spool_read_header() the globals spam_score, spam_bar and spam_report. It appears somebody forgot to add them to the eximon globals when they became stored globals in Exim. This patch fixes the problem and eximon compiles again. --- src/exim_monitor/em_globals.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/exim_monitor/em_globals.c b/src/exim_monitor/em_globals.c index f6dcef384..fc15dc704 100644 --- a/src/exim_monitor/em_globals.c +++ b/src/exim_monitor/em_globals.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/exim_monitor/em_globals.c,v 1.13 2008/01/16 09:32:25 tom Exp $ */ +/* $Cambridge: exim/src/exim_monitor/em_globals.c,v 1.14 2008/12/30 13:12:02 michael Exp $ */ /************************************************* * Exim Monitor * @@ -166,6 +166,9 @@ uschar *local_scan_data = NULL; BOOL log_timezone = FALSE; #ifdef WITH_CONTENT_SCAN +uschar *spam_bar = NULL; +uschar *spam_report = NULL; +uschar *spam_score = NULL; uschar *spam_score_int = NULL; #endif -- 2.30.2