blob: e298891d735875002c5631fd1b1bd16c8fbc8564 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
--- loadconfig.h.orig 2007-05-14 15:19:00 UTC
+++ loadconfig.h
@@ -12,23 +12,23 @@ enum {
VALSIZE = 256
};
-int wcnt;
-int bcnt;
-int pcnt;
-int enable_subj_filt;
+extern int wcnt;
+extern int bcnt;
+extern int pcnt;
+extern int enable_subj_filt;
-char logtype[VALSIZE];
-char logfile[VALSIZE];
-char ignorefile[VALSIZE];
-char highfile[VALSIZE];
-char badmailfile[VALSIZE];
-char hostname[VALSIZE];
-char sysadmin[VALSIZE];
-char statfile[VALSIZE];
-char mail_command[VALSIZE];
-char makemap_command[VALSIZE];
-char qsheff_rules_file[VALSIZE];
-char trim_subj_str[VALSIZE];
+extern char logtype[VALSIZE];
+extern char logfile[VALSIZE];
+extern char ignorefile[VALSIZE];
+extern char highfile[VALSIZE];
+extern char badmailfile[VALSIZE];
+extern char hostname[VALSIZE];
+extern char sysadmin[VALSIZE];
+extern char statfile[VALSIZE];
+extern char mail_command[VALSIZE];
+extern char makemap_command[VALSIZE];
+extern char qsheff_rules_file[VALSIZE];
+extern char trim_subj_str[VALSIZE];
void
loadconfig(const char *);
|