diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2010-02-22 09:19:43 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-02-22 12:54:52 -0500 |
commit | b81f453b8ade026f9c19bfd557a986cbcf0c9c8c (patch) | |
tree | eed75280be4db28104748ae4c748dc0b4eaeeab0 /src/providers/data_provider_be.c | |
parent | 446dbddae224cb68422825445b3cbdeb6606aa81 (diff) | |
download | sssd-b81f453b8ade026f9c19bfd557a986cbcf0c9c8c.tar.gz sssd-b81f453b8ade026f9c19bfd557a986cbcf0c9c8c.tar.xz sssd-b81f453b8ade026f9c19bfd557a986cbcf0c9c8c.zip |
Remove unnecessary "domain" parameter from DP registration
This was a holdover from when the DP and the providers were unique
processes. The NSS and PAM registrations do not need to send the
domain, as it is not ambiguous which one they are talking to.
Diffstat (limited to 'src/providers/data_provider_be.c')
-rw-r--r-- | src/providers/data_provider_be.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/providers/data_provider_be.c b/src/providers/data_provider_be.c index 93cae070..c384d015 100644 --- a/src/providers/data_provider_be.c +++ b/src/providers/data_provider_be.c @@ -654,7 +654,6 @@ static int client_registration(DBusMessage *message, DBusError dbus_error; dbus_uint16_t cli_ver; char *cli_name; - char *cli_domain; dbus_bool_t dbret; void *data; @@ -674,7 +673,6 @@ static int client_registration(DBusMessage *message, dbret = dbus_message_get_args(message, &dbus_error, DBUS_TYPE_UINT16, &cli_ver, DBUS_TYPE_STRING, &cli_name, - DBUS_TYPE_STRING, &cli_domain, DBUS_TYPE_INVALID); if (!dbret) { DEBUG(1, ("Failed to parse message, killing connection\n")); |