Browse code

Use PATHSEP instead of \\, which broke clamd on Unix.

Török Edvin authored on 2009/10/21 15:48:50
Showing 1 changed files
... ...
@@ -34,7 +34,7 @@ typedef	unsigned	int	in_addr_t;
34 34
 #define PATHSEP "/"
35 35
 #endif
36 36
 
37
-#define CONFDIR_CLAMD CONFDIR"\\clamd.conf"
38
-#define CONFDIR_FRESHCLAM CONFDIR"\\freshclam.conf"
39
-#define CONFDIR_MILTER CONFDIR"\\clamav-milter.conf"
37
+#define CONFDIR_CLAMD CONFDIR PATHSEP "clamd.conf"
38
+#define CONFDIR_FRESHCLAM CONFDIR PATHSEP "freshclam.conf"
39
+#define CONFDIR_MILTER CONFDIR PATHSEP "clamav-milter.conf"
40 40