summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2014-05-19 07:28:37 +0200
committerJakub Hrozek <jhrozek@redhat.com>2014-06-03 13:37:51 +0200
commitb1b6c01f692c6dbea7662f1250c1fe04472aaec5 (patch)
tree553283854a867359006583172d6a5ab0af6f03e0 /src
parent8b3af7d0073745ab0869921cd2ab11bef652ea79 (diff)
downloadsssd-b1b6c01f692c6dbea7662f1250c1fe04472aaec5.tar.gz
sssd-b1b6c01f692c6dbea7662f1250c1fe04472aaec5.tar.xz
sssd-b1b6c01f692c6dbea7662f1250c1fe04472aaec5.zip
Remove unused parameter from ifp_user_get_attr_handle_reply
Reviewed-by: Pavel Reichl <preichl@redhat.com> (cherry picked from commit 93a7dc1ed50a1f7a82d6e3985f16be774c84ada0)
Diffstat (limited to 'src')
-rw-r--r--src/responder/ifp/ifpsrv_cmd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/responder/ifp/ifpsrv_cmd.c b/src/responder/ifp/ifpsrv_cmd.c
index fab87b916..745f24393 100644
--- a/src/responder/ifp/ifpsrv_cmd.c
+++ b/src/responder/ifp/ifpsrv_cmd.c
@@ -44,8 +44,8 @@ static errno_t ifp_user_get_attr_recv(TALLOC_CTX *mem_ctx,
static void ifp_user_get_attr_process(struct tevent_req *req);
static errno_t
-ifp_user_get_attr_handle_reply(struct ifp_req *ireq, const char *user,
- const char **attrs, struct ldb_result *res);
+ifp_user_get_attr_handle_reply(struct ifp_req *ireq,
+ const char **attrs, struct ldb_result *res);
static errno_t
ifp_user_get_attr_unpack_msg(struct ifp_attr_req *attr_req);
@@ -162,7 +162,7 @@ static void ifp_user_get_attr_process(struct tevent_req *req)
return;
}
- ret = ifp_user_get_attr_handle_reply(attr_req->ireq, attr_req->name,
+ ret = ifp_user_get_attr_handle_reply(attr_req->ireq,
attr_req->attrs, res);
if (ret != EOK) {
sbus_request_fail_and_finish(attr_req->ireq->dbus_req,
@@ -174,7 +174,7 @@ static void ifp_user_get_attr_process(struct tevent_req *req)
}
static errno_t
-ifp_user_get_attr_handle_reply(struct ifp_req *ireq, const char *user,
+ifp_user_get_attr_handle_reply(struct ifp_req *ireq,
const char **attrs, struct ldb_result *res)
{
errno_t ret;