From: Christian Dywan Date: Tue, 4 Jan 2011 19:23:47 +0000 (+0000) Subject: Make _dbus_system_logv actually exit with DBUS_SYSTEM_LOG_FATAL X-Git-Tag: dbus-1.4.4~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7fa27f7d09f0900c89c77de86ef235a5dcf86bcc;p=thirdparty%2Fdbus.git Make _dbus_system_logv actually exit with DBUS_SYSTEM_LOG_FATAL Bug: https://bugs.freedesktop.org/show_bug.cgi?id=32262 Bug-NB: NB#180486 Reviewed-by: Thiago Macieira Reviewed-by: Simon McVittie --- diff --git a/dbus/dbus-sysdeps-util-unix.c b/dbus/dbus-sysdeps-util-unix.c index 5904950de..00705b362 100644 --- a/dbus/dbus-sysdeps-util-unix.c +++ b/dbus/dbus-sysdeps-util-unix.c @@ -418,6 +418,7 @@ _dbus_system_logv (DBusSystemLogSeverity severity, const char *msg, va_list args break; case DBUS_SYSTEM_LOG_FATAL: flags = LOG_DAEMON|LOG_CRIT; + break; default: return; }