diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/winbindd/winbindd_check_machine_acct.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_check_machine_acct.c b/source3/winbindd/winbindd_check_machine_acct.c index 33b6d9fba4..57595c18e0 100644 --- a/source3/winbindd/winbindd_check_machine_acct.c +++ b/source3/winbindd/winbindd_check_machine_acct.c @@ -93,5 +93,8 @@ static void winbindd_check_machine_acct_done(struct tevent_req *subreq) NTSTATUS winbindd_check_machine_acct_recv(struct tevent_req *req, struct winbindd_response *presp) { - return tevent_req_simple_recv_ntstatus(req); + NTSTATUS status = tevent_req_simple_recv_ntstatus(req); + + set_auth_errors(presp, status); + return status; } |