summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Haardt <michael@moria.de>2008-12-30 13:12:02 +0000
committerMichael Haardt <michael@moria.de>2008-12-30 13:12:02 +0000
commit83e11d00e0583100566e2e2f3062f5e29c8ab87f (patch)
tree62e90225a29557594a92bfee80bcdda4b1e7f60f
parent9683a68f97514134e8b0f52293d72b760cbdeaf2 (diff)
downloadexim4-83e11d00e0583100566e2e2f3062f5e29c8ab87f.tar.gz
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.
-rw-r--r--src/exim_monitor/em_globals.c5
1 files changed, 4 insertions, 1 deletions
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