Changeset 272 for branches/samba-3.2.x/source/winbindd
- Timestamp:
- Jun 16, 2009, 5:52:30 PM (16 years ago)
- Location:
- branches/samba-3.2.x/source/winbindd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.2.x/source/winbindd/idmap.c
r204 r272 556 556 talloc_set_destructor(dom, close_domain_destructor); 557 557 558 dom->params = talloc_strdup(dom, compat_params); 559 IDMAP_CHECK_ALLOC(dom->params); 558 if (compat_params) { 559 dom->params = talloc_strdup(dom, compat_params); 560 IDMAP_CHECK_ALLOC(dom->params); 561 } else { 562 dom->params = NULL; 563 } 560 564 561 565 /* Finally instance a backend copy for this domain */ -
branches/samba-3.2.x/source/winbindd/winbindd.c
r232 r272 799 799 for (state = winbindd_client_list(); state; state = state->next) { 800 800 if (state->response.result != WINBINDD_PENDING && 801 state->fd_event.flags == EVENT_FD_READ && 801 802 !state->getpwent_state && !state->getgrent_state) { 802 803 nidle++;
Note:
See TracChangeset
for help on using the changeset viewer.