Lines Matching defs:add
56 /* There are no groups in LDAP but we should add user to groups ?? */
77 "need to add a fake entry\n",
111 /* The group is not in sysdb, need to add a fake entry */
663 DEBUG(SSSDBG_TRACE_FUNC, "Could not add incomplete groups [%d]: %s\n",
693 char **add;
735 mdiff->add = talloc_steal(mdiff, add_groups);
1187 (const char *const *) miter->add,
1953 char **add = NULL;
1988 /* Create a copy of iter->add array but do not include groups outside
1991 for (grp_count = 0; iter->add[grp_count]; grp_count++);
1992 add = talloc_zero_array(tmp_ctx, char *, grp_count + 1);
1993 if (add == NULL) {
2001 if (!strcmp(iter_tmp->name,iter->add[i])) {
2002 add[num_added] = iter->add[i];
2010 add = NULL;
2012 add[num_added] = NULL;
2016 (const char *const *) add,