summaryrefslogtreecommitdiffstats
path: root/src/providers/dp_auth_util.c
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-05-22 10:33:26 -0400
committerStephen Gallagher <sgallagh@redhat.com>2010-05-27 14:44:12 -0400
commit0507838f0194b37271c52acab1bdfa73af3929da (patch)
treeffe95860e9247de7df653b16d91eb9b8d70a7ff7 /src/providers/dp_auth_util.c
parent8b420102e0d91edb2acbd2e8a40fc7d9995de2ba (diff)
downloadsssd-0507838f0194b37271c52acab1bdfa73af3929da.tar.gz
sssd-0507838f0194b37271c52acab1bdfa73af3929da.tar.xz
sssd-0507838f0194b37271c52acab1bdfa73af3929da.zip
Make data provider id_callback public
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 e09a69243..97690057a 100644
--- a/src/providers/dp_auth_util.c
+++ b/src/providers/dp_auth_util.c
@@ -236,7 +236,7 @@ bool dp_unpack_pam_response(DBusMessage *msg, struct pam_data *pd, DBusError *db
return true;
}
-static void id_callback(DBusPendingCall *pending, void *ptr)
+void dp_id_callback(DBusPendingCall *pending, void *ptr)
{
DBusMessage *reply;
DBusError dbus_error;
@@ -327,7 +327,7 @@ int dp_common_send_id(struct sbus_connection *conn, uint16_t version,
return EIO;
}
- retval = sbus_conn_send(conn, msg, 30000, id_callback, NULL, NULL);
+ retval = sbus_conn_send(conn, msg, 30000, dp_id_callback, NULL, NULL);
dbus_message_unref(msg);
return retval;