1ippool: always log to syslog
2
3Even when running in the foreground, send log messages to syslog.
4
5Upstream-Status: Inappropriate [embedded specific]
6
7Signed-off-by: Joe Slater <jslater@windriver.com>
8
9
10--- a/ippool_main.c
11+++ b/ippool_main.c
12@@ -251,9 +251,8 @@ void ippool_vlog(int level, const char *
13 	if (ippool_opt_nodaemon) {
14 		vprintf(fmt, ap);
15 		printf("\n");
16-	} else {
17-		vsyslog(level, fmt, ap);
18 	}
19+	vsyslog(level, fmt, ap);
20 	DMALLOC_VMESSAGE(fmt, ap);
21 }
22
23