Ignore:
Timestamp:
Sep 30, 2008, 7:14:08 AM (17 years ago)
Author:
Paul Smedley
Message:

Update source to 3.0.32

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/nsswitch/winbindd_dual.c

    r140 r158  
    103103};
    104104
     105static void async_request_fail(struct winbindd_async_request *state);
    105106static void async_main_request_sent(void *private_data, BOOL success);
    106107static void async_request_sent(void *private_data, BOOL success);
     
    128129        state->mem_ctx = mem_ctx;
    129130        state->child = child;
     131        state->reply_timeout_event = NULL;
    130132        state->request = request;
    131133        state->response = response;
     
    147149        if (!success) {
    148150                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);
    153152                return;
    154153        }
     
    10251024                /* check for signals */
    10261025                winbind_check_sigterm(false);
    1027                 winbind_check_sighup();
     1026                winbind_check_sighup(override_logfile ? NULL :
     1027                        child->logfilename);
    10281028
    10291029                run_events(winbind_event_context(), 0, NULL, NULL);
Note: See TracChangeset for help on using the changeset viewer.