diff options
author | Jan Zeleny <jzeleny@redhat.com> | 2011-05-13 18:42:00 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-05-16 08:05:33 -0400 |
commit | 336e324fc1a5d57ac404cf1055191f72e663bd89 (patch) | |
tree | f0abb3f17c5a3bdfe8566ad2feae0fbef02f1551 /src/providers | |
parent | 895b0951b08ee1c1ff1cfa524c087432697ed758 (diff) | |
download | sssd-336e324fc1a5d57ac404cf1055191f72e663bd89.tar.gz sssd-336e324fc1a5d57ac404cf1055191f72e663bd89.tar.xz sssd-336e324fc1a5d57ac404cf1055191f72e663bd89.zip |
Fixed wrong variable in sdap_initgr_nested_store
Diffstat (limited to 'src/providers')
-rw-r--r-- | src/providers/ldap/sdap_async_accounts.c | 2 |
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 8fd7cf2a3..1ece3d809 100644 --- a/src/providers/ldap/sdap_async_accounts.c +++ b/src/providers/ldap/sdap_async_accounts.c @@ -2722,7 +2722,7 @@ static int sdap_initgr_nested_store_group(struct sysdb_ctx *sysdb, } sysdb_grouplist[i] = NULL; } else if (ret == ENOENT) { - direct_sysdb_groups = NULL; + sysdb_grouplist = NULL; direct_sysdb_count = 0; } else { DEBUG(2, ("sysdb_search_entry failed: [%d]: %s\n", ret, strerror(ret))); |