- Don't make warnings fatal (resolves #465693)
This commit is contained in:
parent
c5fea7243b
commit
2db11df2d8
@ -7,23 +7,6 @@ Index: daemon/obexftp-marshal.list
|
||||
VOID:STRING,STRING
|
||||
+VOID:STRING,STRING,STRING
|
||||
VOID:STRING,STRING,UINT64
|
||||
Index: daemon/daemon-main.c
|
||||
===================================================================
|
||||
--- daemon/daemon-main.c (revision 2022)
|
||||
+++ daemon/daemon-main.c (working copy)
|
||||
@@ -65,6 +65,12 @@
|
||||
dbus_error_free (&derror);
|
||||
exit (1);
|
||||
}
|
||||
+
|
||||
+ GLogLevelFlags fatal_mask;
|
||||
+
|
||||
+ fatal_mask = g_log_set_always_fatal (G_LOG_FATAL_MASK);
|
||||
+ fatal_mask |= G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL;
|
||||
+ g_log_set_always_fatal (fatal_mask);
|
||||
}
|
||||
|
||||
void
|
||||
Index: daemon/gvfsbackendobexftp.c
|
||||
===================================================================
|
||||
--- daemon/gvfsbackendobexftp.c (revision 2022)
|
||||
|
@ -1,7 +1,7 @@
|
||||
Summary: Backends for the gio framework in GLib
|
||||
Name: gvfs
|
||||
Version: 1.0.1
|
||||
Release: 4%{?dist}
|
||||
Release: 5%{?dist}
|
||||
License: LGPLv2+
|
||||
Group: System Environment/Libraries
|
||||
URL: http://www.gtk.org
|
||||
@ -259,6 +259,9 @@ update-desktop-database &> /dev/null ||:
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Oct 7 2008 Tomas Bzatek <tbzatek@redhat.com> - 1.0.1-5
|
||||
- Don't make warnings fatal (resolves #465693)
|
||||
|
||||
* Wed Oct 1 2008 David Zeuthen <davidz@redhat.com> - 1.0.1-4
|
||||
- Add patch for reverse mapping FUSE paths (bgo #530654)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user