Commit d4917de03a24f929f24a5f969f64f571d287794c

root 2014-04-15T09:55:55

syslog requires a facility ... in more than one place

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/logging.c b/logging.c
index b75f215..1fdf48a 100644
--- a/logging.c
+++ b/logging.c
@@ -91,7 +91,7 @@ void _simplelog(int prio, const char *str, bool force)
 {
 #ifdef HAVE_SYSLOG_H
 	if (use_syslog) {
-		syslog(prio, "%s", str);
+		syslog(LOG_LOCAL0 | prio, "%s", str);
 	}
 #else
 	if (0) {}