From 4c08db0fb0dda3d27b1184248ca5c800d7ce23f0 Mon Sep 17 00:00:00 2001 From: Michal Zidek Date: Fri, 11 Oct 2013 19:58:27 +0200 Subject: SYSDB: Drop the sysdb_ctx parameter - module sysdb_ops (part 1) --- src/providers/ldap/sdap_access.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/providers/ldap/sdap_access.c') diff --git a/src/providers/ldap/sdap_access.c b/src/providers/ldap/sdap_access.c index 1934e4f0f..e93400db1 100644 --- a/src/providers/ldap/sdap_access.c +++ b/src/providers/ldap/sdap_access.c @@ -921,8 +921,8 @@ static void sdap_access_filter_get_access_done(struct tevent_req *subreq) goto done; } - tret = sysdb_set_user_attr(state->domain->sysdb, state->domain, - state->username, attrs, SYSDB_MOD_REP); + tret = sysdb_set_user_attr(state->domain, state->username, attrs, + SYSDB_MOD_REP); if (tret != EOK) { /* Failing to save to the cache is non-fatal. * Just return the result. -- cgit