michael 2008/12/30 13:12:02 GMT
Modified files:
exim-src/exim_monitor em_globals.c
Log:
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.
Revision Changes Path
1.14 +3 -0 exim/exim-src/exim_monitor/em_globals.c
Index: em_globals.c
===================================================================
RCS file: /home/cvs/exim/exim-src/exim_monitor/em_globals.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- em_globals.c 16 Jan 2008 09:32:25 -0000 1.13
+++ em_globals.c 30 Dec 2008 13:12:02 -0000 1.14
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/exim-src/exim_monitor/em_globals.c,v 1.13 2008/01/16 09:32:25 tom Exp $ */
+/* $Cambridge: exim/exim-src/exim_monitor/em_globals.c,v 1.14 2008/12/30 13:12:02 michael Exp $ */
/*************************************************
* Exim Monitor *
@@ -166,6 +166,9 @@
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