diff options
author | Milan Crha <mcrha@redhat.com> | 2010-07-30 03:07:26 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-07-30 03:07:26 +0800 |
commit | 52ad80d6014a82cb64903d5a452083f5f923a034 (patch) | |
tree | 9b8d174ee87cb06b3356c617eb912a0ee20a26b7 /modules | |
parent | efba3b0b74955cfbe7b825aaab231923de732a46 (diff) | |
download | gsoc2013-evolution-52ad80d6014a82cb64903d5a452083f5f923a034.tar.gz gsoc2013-evolution-52ad80d6014a82cb64903d5a452083f5f923a034.tar.zst gsoc2013-evolution-52ad80d6014a82cb64903d5a452083f5f923a034.zip |
Bug #625606 - git/master build dies with glib-2.25.12
Diffstat (limited to 'modules')
-rw-r--r-- | modules/connman/evolution-connman.c | 2 | ||||
-rw-r--r-- | modules/network-manager/evolution-network-manager.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/connman/evolution-connman.c b/modules/connman/evolution-connman.c index 18187b41ca..d11fa52577 100644 --- a/modules/connman/evolution-connman.c +++ b/modules/connman/evolution-connman.c @@ -105,7 +105,7 @@ connman_check_initial_state (EConnMan *extension) /* XXX Assuming this should be safe to call synchronously. */ response = g_dbus_connection_send_message_with_reply_sync ( - extension->connection, message, 100, NULL, NULL, &error); + extension->connection, message, G_DBUS_SEND_MESSAGE_FLAGS_NONE, 100, NULL, NULL, &error); if (response != NULL) { gchar *state = NULL; diff --git a/modules/network-manager/evolution-network-manager.c b/modules/network-manager/evolution-network-manager.c index d63eed22cf..ec9056d4b3 100644 --- a/modules/network-manager/evolution-network-manager.c +++ b/modules/network-manager/evolution-network-manager.c @@ -122,7 +122,7 @@ network_manager_check_initial_state (ENetworkManager *extension) /* XXX Assuming this should be safe to call synchronously. */ response = g_dbus_connection_send_message_with_reply_sync ( - extension->connection, message, 100, NULL, NULL, &error); + extension->connection, message, G_DBUS_SEND_MESSAGE_FLAGS_NONE, 100, NULL, NULL, &error); if (response != NULL) { GVariant *body = g_dbus_message_get_body (response); |