diff -Nru gnome-system-tools-3.0.0/debian/changelog gnome-system-tools-3.0.0/debian/changelog --- gnome-system-tools-3.0.0/debian/changelog 2013-10-04 01:28:41.000000000 +0400 +++ gnome-system-tools-3.0.0/debian/changelog 2014-09-23 11:20:00.000000000 +0400 @@ -1,3 +1,11 @@ +gnome-system-tools (3.0.0-3.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * dont-ignore-oobsresult.patch: new patch. Don't ignore OobsResult + in a callback function, show the message dialog instead. + + -- Vlad Orlov Tue, 23 Sep 2014 11:18:06 +0400 + gnome-system-tools (3.0.0-3) unstable; urgency=low [ Josselin Mouette ] diff -Nru gnome-system-tools-3.0.0/debian/patches/dont-ignore-oobsresult.patch gnome-system-tools-3.0.0/debian/patches/dont-ignore-oobsresult.patch --- gnome-system-tools-3.0.0/debian/patches/dont-ignore-oobsresult.patch 1970-01-01 03:00:00.000000000 +0300 +++ gnome-system-tools-3.0.0/debian/patches/dont-ignore-oobsresult.patch 2014-09-23 11:18:01.000000000 +0400 @@ -0,0 +1,15 @@ +Index: gnome-system-tools-3.0.0/src/common/gst-tool.c +=================================================================== +--- gnome-system-tools-3.0.0.orig/src/common/gst-tool.c ++++ gnome-system-tools-3.0.0/src/common/gst-tool.c +@@ -584,6 +584,10 @@ update_async_func (OobsObject *object, + gst_tool_update_config (tool); + gst_tool_update_gui (tool); + } ++ ++ if (result != OOBS_RESULT_OK) { ++ show_oobs_error_dialog (tool, OPERATION_UPDATE, result); ++ } + } + + void diff -Nru gnome-system-tools-3.0.0/debian/patches/series gnome-system-tools-3.0.0/debian/patches/series --- gnome-system-tools-3.0.0/debian/patches/series 2013-10-04 01:27:50.000000000 +0400 +++ gnome-system-tools-3.0.0/debian/patches/series 2014-09-23 11:17:17.000000000 +0400 @@ -5,3 +5,4 @@ 62_no_gettext.patch gthread.patch time-libm.patch +dont-ignore-oobsresult.patch