summaryrefslogtreecommitdiff
path: root/bus/driver.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2013-08-23 11:09:35 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2013-08-23 11:10:41 +0100
commit30fa2e1ace062314e9624b29239c2c7e9519e6c2 (patch)
tree7081c3a3979c2dec37edec4cec1507aaa4bdfccf /bus/driver.c
parent414cb42dee3d7678ae24aca2f55ec0d83892fbb4 (diff)
downloaddbus-30fa2e1ace062314e9624b29239c2c7e9519e6c2.tar.gz
Revert "Factor out DBusAuthorization from DBusTransport"
This reverts commit 600621dbc8073527a958091316eddfbb490c1032.
Diffstat (limited to 'bus/driver.c')
-rw-r--r--bus/driver.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/bus/driver.c b/bus/driver.c
index 564cecb4..23197e43 100644
--- a/bus/driver.c
+++ b/bus/driver.c
@@ -1535,7 +1535,6 @@ bus_driver_handle_get_connection_credentials (DBusConnection *connection,
DBusMessageIter reply_iter;
DBusMessageIter array_iter;
unsigned long ulong_val;
- char *windows_sid;
const char *service;
_DBUS_ASSERT_ERROR_IS_CLEAR (error);
@@ -1570,16 +1569,6 @@ bus_driver_handle_get_connection_credentials (DBusConnection *connection,
goto oom;
}
- if (dbus_connection_get_windows_user (conn, &windows_sid))
- {
- if (!_dbus_asv_add_string (&array_iter, "WindowsSID", windows_sid))
- {
- dbus_free(windows_sid);
- goto oom;
- }
- dbus_free(windows_sid);
- }
-
if (!_dbus_asv_close (&reply_iter, &array_iter))
goto oom;