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/krb5/krb5_auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/providers/krb5') 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; -- cgit