mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-29 13:00:32 +01:00
21 lines
584 B
Diff
21 lines
584 B
Diff
|
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;
|