util-spool_in.c references in spool_read_header() the globals
authorMichael Haardt <michael@moria.de>
Tue, 30 Dec 2008 13:12:02 +0000 (13:12 +0000)
committerMichael Haardt <michael@moria.de>
Tue, 30 Dec 2008 13:12:02 +0000 (13:12 +0000)
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

index f6dcef384d4350a8dc7b389005057b5a850f6e17..fc15dc704311c4336a530985708a0ec80886b5c2 100644 (file)
@@ -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