Magellan Linux

Contents of /trunk/dbus/patches/dbus-1.5.8-no-fatal-warnings.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1600 - (show annotations) (download)
Mon Dec 19 10:57:39 2011 UTC (12 years, 4 months ago) by niro
File size: 863 byte(s)
-1.5.8 fixes
1 From: Sebastian Dröge <slomo@ubuntu.com>
2 Subject: Don't abort on fatal warnings by default
3 Date: 2006-11-14 15:35:00 +0100
4
5 This behaviour can be controlled by the DBUS_FATAL_WARNINGS enviroment
6 variable. This will be set to upstream default again at some point so
7 if you have an application that prints a DBus warning get it fixed.
8
9 Origin: vendor, Debian
10 Forwarded: no
11
12 Index: b/dbus/dbus-internals.c
13 ===================================================================
14 --- a/dbus/dbus-internals.c 2010-07-14 00:43:38.000000000 +0200
15 +++ b/dbus/dbus-internals.c 2010-07-17 15:16:54.478407971 +0200
16 @@ -199,7 +199,7 @@
17
18 static dbus_bool_t warn_initted = FALSE;
19 static dbus_bool_t fatal_warnings = FALSE;
20 -static dbus_bool_t fatal_warnings_on_check_failed = TRUE;
21 +static dbus_bool_t fatal_warnings_on_check_failed = FALSE;
22
23 static void
24 init_warnings(void)