Skip to content

Commit 1cc0dac

Browse files
committed
Release version 0.13
* And fix a make distcheck issue
1 parent ff63097 commit 1cc0dac

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# along with Cockpit; If not, see <http://www.gnu.org/licenses/>.
1717

1818
AC_INIT([Cockpit],
19-
[0.12],
19+
[0.13],
2020
2121
[cockpit],
2222
[http://www.cockpit-project.org/])

src/agent/cockpitdbusjson.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1374,7 +1374,8 @@ on_object_manager_ready (GObject *source,
13741374

13751375
if (self->object_manager == NULL)
13761376
{
1377-
if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
1377+
if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED) ||
1378+
g_cancellable_is_cancelled (self->cancellable))
13781379
{
13791380
g_debug ("%s", error->message);
13801381
}

0 commit comments

Comments
 (0)