Searched defs:diff (Results 1 - 3 of 3) sorted by relevance

/sssd/src/responder/common/
H A Dresponder_get_domains.c339 time_t diff; local
341 diff = now - rctx->get_domains_last_call.tv_sec;
342 if (diff >= rctx->domains_timeout) {
351 diff = now - dom->subdomains_last_checked.tv_sec;
356 if (diff >= rctx->domains_timeout) {
/sssd/src/util/
H A Dutil.c766 int diff = strlen(host) - strlen(domain); local
768 if (diff == 0 && strcmp(host, domain) == 0) {
772 if (diff > 0 && strcmp(host + diff, domain) == 0 && host[diff - 1] == '.') {
/sssd/src/ldb_modules/
H A Dmemberof.c2109 struct ldb_dn **diff = NULL; local
2147 diff = talloc_array(del_ctx, struct ldb_dn *,
2149 if (!diff) {
2153 diff[j] = ldb_dn_from_ldb_val(diff, ldb, &el->values[i]);
2154 if (!diff[j]) {
2159 if (ldb_dn_compare(del_ctx->first->entry_dn, diff[j]) == 0) {
2166 diff[j] = NULL;
2203 for (k = 0; diff[k]; k++) {
2204 if (ldb_dn_compare(new_list->dns[i], diff[
[all...]

Completed in 38 milliseconds