Lines Matching defs:add
57 /* There are no groups in LDAP but we should add user to groups?? */
78 "need to add a fake entry\n",
112 /* The group is not in sysdb, need to add a fake entry */
691 DEBUG(SSSDBG_TRACE_FUNC, "Could not add incomplete groups [%d]: %s\n",
721 char **add;
763 mdiff->add = talloc_steal(mdiff, add_groups);
1215 (const char *const *) miter->add,
1981 char **add = NULL;
2016 /* Create a copy of iter->add array but do not include groups outside
2019 for (grp_count = 0; iter->add[grp_count]; grp_count++);
2020 add = talloc_zero_array(tmp_ctx, char *, grp_count + 1);
2021 if (add == NULL) {
2029 if (!strcmp(iter_tmp->name,iter->add[i])) {
2030 add[num_added] = iter->add[i];
2038 add = NULL;
2040 add[num_added] = NULL;
2044 (const char *const *) add,