blob: a3d1882d8d32942df7461134a8d0ab409ec1fd2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
commit 0f7db943bef0488644dce11c2ba2d19c180d8650
Author: Norman Rasmussen <norman@rasmussen.co.za>
Date: Sun Jan 10 21:43:44 2010 +0000
Initialize syslog so that we log with our PID as DAEMON.
diff --git a/common/aiccu.c b/common/aiccu.c
index 9abb334..75aadc8 100755
--- a/common/aiccu.c
+++ b/common/aiccu.c
@@ -58,6 +58,9 @@ bool aiccu_InitConfig()
int ret;
#define CAFILE "ca.pem"
#endif
+#ifndef _WIN32
+ openlog(NULL, LOG_PID, LOG_DAEMON);
+#endif
/* Allocate & Initialize */
g_aiccu = (struct AICCU_conf *)malloc(sizeof(*g_aiccu));
if (!g_aiccu) return false;
|