Changeset 158 for branches/samba-3.0/source/nsswitch/winbindd_dual.c
- Timestamp:
- Sep 30, 2008, 7:14:08 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.0/source/nsswitch/winbindd_dual.c
r140 r158 103 103 }; 104 104 105 static void async_request_fail(struct winbindd_async_request *state); 105 106 static void async_main_request_sent(void *private_data, BOOL success); 106 107 static void async_request_sent(void *private_data, BOOL success); … … 128 129 state->mem_ctx = mem_ctx; 129 130 state->child = child; 131 state->reply_timeout_event = NULL; 130 132 state->request = request; 131 133 state->response = response; … … 147 149 if (!success) { 148 150 DEBUG(5, ("Could not send async request\n")); 149 150 state->response->length = sizeof(struct winbindd_response); 151 state->response->result = WINBINDD_ERROR; 152 state->continuation(state->private_data, False); 151 async_request_fail(state); 153 152 return; 154 153 } … … 1025 1024 /* check for signals */ 1026 1025 winbind_check_sigterm(false); 1027 winbind_check_sighup(); 1026 winbind_check_sighup(override_logfile ? NULL : 1027 child->logfilename); 1028 1028 1029 1029 run_events(winbind_event_context(), 0, NULL, NULL);
Note:
See TracChangeset
for help on using the changeset viewer.