Changeset 989 for vendor/current/source3/libads/cldap.c
- Timestamp:
- Nov 25, 2016, 8:04:54 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/libads/cldap.c
r988 r989 118 118 state->servers[i], 119 119 &state->cldap[i]); 120 if (tevent_req_nterror(req, status)) { 121 return tevent_req_post(req, ev); 120 if (!NT_STATUS_IS_OK(status)) { 121 /* 122 * Don't error out all sends just 123 * because one cldap_socket_init() failed. 124 * Log it here, and the cldap_netlogon_send() 125 * will catch it (with in.dest_address == NULL) 126 * and correctly error out in 127 * cldap_multi_netlogon_done(). This still allows 128 * the other requests to be concurrently sent. 129 */ 130 DBG_NOTICE("cldap_socket_init failed for %s " 131 " error %s\n", 132 tsocket_address_string(state->servers[i], 133 req), 134 nt_errstr(status)); 122 135 } 123 136
Note:
See TracChangeset
for help on using the changeset viewer.