summaryrefslogtreecommitdiff
path: root/src/nm-auth-subject.c
diff options
context:
space:
mode:
authorDan Winship <danw@redhat.com>2015-04-16 12:34:55 -0400
committerDan Winship <danw@redhat.com>2015-08-10 09:41:26 -0400
commit1cf35cb26b6cc04f8b2c51c3cde4bc08ef311062 (patch)
tree4d237cb0792d871ba87bee87d71832d126162538 /src/nm-auth-subject.c
parent34ba4e14b8674dc74327975159e101710ebd5403 (diff)
downloadNetworkManager-1cf35cb26b6cc04f8b2c51c3cde4bc08ef311062.tar.gz
core: final gdbus porting
Port remaining bits to gdbus and remove stray dbus-glib references Drop the dbus-glib version check from configure, since nothing depends on new dbus-glib any more. Move nm-dbus-glib-types.h and nm-gvaluearray-compat.h from include/ to libnm-util/ since they are now only used by libnm-util and libnm-glib.
Diffstat (limited to 'src/nm-auth-subject.c')
-rw-r--r--src/nm-auth-subject.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/nm-auth-subject.c b/src/nm-auth-subject.c
index 5e2eaa7250..c4b6e579ac 100644
--- a/src/nm-auth-subject.c
+++ b/src/nm-auth-subject.c
@@ -167,9 +167,9 @@ nm_auth_subject_get_unix_process_dbus_sender (NMAuthSubject *subject)
/**************************************************************/
static NMAuthSubject *
-_new_unix_process (DBusGMethodInvocation *context,
- DBusConnection *connection,
- DBusMessage *message)
+_new_unix_process (GDBusMethodInvocation *context,
+ GDBusConnection *connection,
+ GDBusMessage *message)
{
NMAuthSubject *self;
gboolean success = FALSE;
@@ -221,14 +221,14 @@ _new_unix_process (DBusGMethodInvocation *context,
}
NMAuthSubject *
-nm_auth_subject_new_unix_process_from_context (DBusGMethodInvocation *context)
+nm_auth_subject_new_unix_process_from_context (GDBusMethodInvocation *context)
{
return _new_unix_process (context, NULL, NULL);
}
NMAuthSubject *
-nm_auth_subject_new_unix_process_from_message (DBusConnection *connection,
- DBusMessage *message)
+nm_auth_subject_new_unix_process_from_message (GDBusConnection *connection,
+ GDBusMessage *message)
{
return _new_unix_process (NULL, connection, message);
}