summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasmine Hassan <[email protected]>2012-12-15 03:13:18 +0200
committerJasmine Hassan <[email protected]>2012-12-15 07:03:38 +0200
commit89f1a9bd93f75f2b3cd23667654d0351d86b13eb (patch)
tree0cce3e7fe7c040e3c898a6640c6e35a3af00be75
parent8bcea2de19cab57e0c340cf6d8ebf181c31529df (diff)
downloadmate-settings-daemon-89f1a9bd93f75f2b3cd23667654d0351d86b13eb.tar.bz2
mate-settings-daemon-89f1a9bd93f75f2b3cd23667654d0351d86b13eb.tar.xz
[datetime] fix deprecated polkit_authority_get(), bump to 0.97
http://git.gnome.org/browse/gnome-settings-daemon/commit/?id=d08b1b05997b3591c7ac1eefebd04a503c97c06e and bump PolicyKit minimum required to 0.97 http://git.gnome.org/browse/gnome-settings-daemon/commit/?id=d1c499e9e6b2aae3b0d1e0004e38f1d280e31144
-rw-r--r--configure.ac2
-rw-r--r--plugins/datetime/msd-datetime-mechanism.c10
2 files changed, 9 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 3b73ec7..f4311ab 100644
--- a/configure.ac
+++ b/configure.ac
@@ -349,7 +349,7 @@ AC_SUBST(NSS_DATABASE)
# PolicyKit
# ---------------------------------------------------------------------------
-POLKIT_REQUIRED=0.91
+POLKIT_REQUIRED=0.97
DBUS_REQUIRED=1.1.2
# PolicyKit detection; defaults to 'auto' (use it if it's available)
diff --git a/plugins/datetime/msd-datetime-mechanism.c b/plugins/datetime/msd-datetime-mechanism.c
index f03018f..6fc3399 100644
--- a/plugins/datetime/msd-datetime-mechanism.c
+++ b/plugins/datetime/msd-datetime-mechanism.c
@@ -176,9 +176,15 @@ register_mechanism (MsdDatetimeMechanism *mechanism)
{
GError *error = NULL;
- mechanism->priv->auth = polkit_authority_get ();
+ mechanism->priv->auth = polkit_authority_get_sync (NULL, &error);
+ if (mechanism->priv->auth == NULL) {
+ if (error != NULL) {
+ g_critical ("error getting system bus: %s", error->message);
+ g_error_free (error);
+ }
+ goto error;
+ }
- error = NULL;
mechanism->priv->system_bus_connection = dbus_g_bus_get (DBUS_BUS_SYSTEM, &error);
if (mechanism->priv->system_bus_connection == NULL) {
if (error != NULL) {