When running from systemd syslog will send messages to the log, but so will stderr. Thus using LOG_PERROR doubles every log message. Signed-off-by: Jason Gunthorpe <jgunthorpe@xxxxxxxxxxxxxxxxxxxx> --- srp_daemon/srp_daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srp_daemon/srp_daemon.c b/srp_daemon/srp_daemon.c index c0e8d23d58faf5..f0dfe260945574 100644 --- a/srp_daemon/srp_daemon.c +++ b/srp_daemon/srp_daemon.c @@ -2090,7 +2090,7 @@ int main(int argc, char *argv[]) goto restore_sig; } - openlog("srp_daemon", LOG_PID | LOG_PERROR, LOG_DAEMON); + openlog("srp_daemon", LOG_PID, LOG_DAEMON); config = calloc(1, sizeof(*config)); if (!config) { -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html