summaryrefslogtreecommitdiffstats
path: root/src/providers
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2011-03-07 09:59:13 +0100
committerStephen Gallagher <sgallagh@redhat.com>2011-05-20 07:21:45 -0400
commit77bc3d93ddd41edee6046508884d7e95553ed5b7 (patch)
treef36de2fd8848118b46575e3230a1f84d8442ad65 /src/providers
parentd4bfba145e74aa8c0f9e7c36e548fc9965822a12 (diff)
downloadsssd-77bc3d93ddd41edee6046508884d7e95553ed5b7.tar.gz
sssd-77bc3d93ddd41edee6046508884d7e95553ed5b7.tar.xz
sssd-77bc3d93ddd41edee6046508884d7e95553ed5b7.zip
Change sysdb_add_fake_user to add OriginalDN
RFC2307bis code relies heavily on originalDN, so the fake users need to have an option to store it, too.
Diffstat (limited to 'src/providers')
-rw-r--r--src/providers/ldap/sdap_async_accounts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ldap/sdap_async_accounts.c b/src/providers/ldap/sdap_async_accounts.c
index 9e059bf8a..3387e3ee9 100644
--- a/src/providers/ldap/sdap_async_accounts.c
+++ b/src/providers/ldap/sdap_async_accounts.c
@@ -1406,7 +1406,7 @@ sdap_process_missing_member_2307(struct sdap_process_group_state *state,
*in_transaction = true;
}
- ret = sysdb_add_fake_user(state->sysdb, state->dom, username);
+ ret = sysdb_add_fake_user(state->sysdb, state->dom, username, NULL);
if (ret != EOK) {
DEBUG(1, ("Cannot store fake user entry: [%d]: %s\n",
ret, strerror(ret)));