diff options
author | Michal Zidek <mzidek@redhat.com> | 2013-10-11 19:58:27 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-11-15 20:20:18 +0100 |
commit | 4c08db0fb0dda3d27b1184248ca5c800d7ce23f0 (patch) | |
tree | 2e7654f526442657e3f7dbf832cc067d1be2dc80 /src/providers/krb5/krb5_auth.c | |
parent | 19d8bc19b5b5597427878645644fa354ef6cb54d (diff) | |
download | sssd-4c08db0fb0dda3d27b1184248ca5c800d7ce23f0.tar.gz sssd-4c08db0fb0dda3d27b1184248ca5c800d7ce23f0.tar.xz sssd-4c08db0fb0dda3d27b1184248ca5c800d7ce23f0.zip |
SYSDB: Drop the sysdb_ctx parameter - module sysdb_ops (part 1)
Diffstat (limited to 'src/providers/krb5/krb5_auth.c')
-rw-r--r-- | src/providers/krb5/krb5_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/krb5/krb5_auth.c b/src/providers/krb5/krb5_auth.c index f5a6a2c81..a1774ba05 100644 --- a/src/providers/krb5/krb5_auth.c +++ b/src/providers/krb5/krb5_auth.c @@ -145,7 +145,7 @@ static int krb5_mod_ccname(TALLOC_CTX *mem_ctx, } in_transaction = true; - ret = sysdb_set_user_attr(sysdb, domain, name, attrs, mod_op); + ret = sysdb_set_user_attr(domain, name, attrs, mod_op); if (ret != EOK) { DEBUG(6, ("Error: %d (%s)\n", ret, strerror(ret))); goto done; |