summaryrefslogtreecommitdiffstats
path: root/src/providers/dp_auth_util.c
diff options
context:
space:
mode:
authorStef Walter <stefw@redhat.com>2014-01-10 11:23:33 +0100
committerJakub Hrozek <jhrozek@redhat.com>2014-06-02 18:15:56 +0200
commitf07527b17c700509d632250c1b9c03a8c6c321e5 (patch)
treef17940f4ee9d793db747bcabd51e55b95ffaedfa /src/providers/dp_auth_util.c
parentcfa913a916da0b1be5b432572bcab98ffa281dd6 (diff)
downloadsssd-f07527b17c700509d632250c1b9c03a8c6c321e5.tar.gz
sssd-f07527b17c700509d632250c1b9c03a8c6c321e5.tar.xz
sssd-f07527b17c700509d632250c1b9c03a8c6c321e5.zip
sbus: Use constants to make dbus calls
This allows us to remove duplicated information, and have the compiler check that when an method name is changed or removed the callers are updated. Reviewed-by: Jakub Hrozek <jhrozek@redhat.com> Reviewed-by: Sumit Bose <sbose@redhat.com> Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com> Reviewed-by: Simo Sorce <simo@redhat.com> (cherry picked from commit b668c77874c6fed325471bdcf5954979a0d734e2)
Diffstat (limited to 'src/providers/dp_auth_util.c')
-rw-r--r--src/providers/dp_auth_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/dp_auth_util.c b/src/providers/dp_auth_util.c
index 00bd58d9e..f8a30c5d4 100644
--- a/src/providers/dp_auth_util.c
+++ b/src/providers/dp_auth_util.c
@@ -377,8 +377,8 @@ int dp_common_send_id(struct sbus_connection *conn, uint16_t version,
/* create the message */
msg = dbus_message_new_method_call(NULL,
DP_PATH,
- DP_INTERFACE,
- DP_METHOD_REGISTER);
+ DATA_PROVIDER_IFACE,
+ DATA_PROVIDER_IFACE_REGISTERSERVICE);
if (msg == NULL) {
DEBUG(SSSDBG_FATAL_FAILURE, "Out of memory?!\n");
return ENOMEM;