From 7de3690e68d4a08451378a41b4bcd92a8db812d7 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 28 Mar 2011 13:56:06 +0100 Subject: [PATCH 1/2] complain_about_message: don't return early if syslog is disabled This defeats output of messages to stderr when not syslogging. --- bus/bus.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bus/bus.c b/bus/bus.c index c9253ce..166fb09 100644 --- a/bus/bus.c +++ b/bus/bus.c @@ -1347,7 +1347,7 @@ complain_about_message (BusContext *context, const char *sender_loginfo; const char *proposed_recipient_loginfo; - if (error == NULL && !(context->syslog && log)) + if (error == NULL && !log) return; if (sender != NULL) -- 1.7.4.1