diff options
author | Bo Yang <boyang@samba.org> | 2009-07-18 08:03:57 +0800 |
---|---|---|
committer | Bo Yang <boyang@samba.org> | 2009-07-18 08:18:29 +0800 |
commit | e7daa0d7049933e5a743f7e6db886f624490c53d (patch) | |
tree | 942974a33f0df08d7bfbf1b00bab76d6e3b79cbc | |
parent | 20f40d1c5065d909f4274b86de20fa941fa20405 (diff) | |
download | samba-e7daa0d7049933e5a743f7e6db886f624490c53d.tar.gz samba-e7daa0d7049933e5a743f7e6db886f624490c53d.tar.bz2 samba-e7daa0d7049933e5a743f7e6db886f624490c53d.zip |
s3: don't do this, upper callbacks will check it
Signed-off-by: Bo Yang <boyang@samba.org>
-rw-r--r-- | source3/winbindd/winbindd_dual.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/source3/winbindd/winbindd_dual.c b/source3/winbindd/winbindd_dual.c index 92f0d60817..ab07c9767d 100644 --- a/source3/winbindd/winbindd_dual.c +++ b/source3/winbindd/winbindd_dual.c @@ -179,10 +179,6 @@ int wb_child_request_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx, if (tevent_req_is_unix_error(req, err)) { return -1; } - if (state->response->result != WINBINDD_OK) { - *err = EIO; /* EIO doesn't fit, but what would be better? */ - return -1; - } *presponse = talloc_move(mem_ctx, &state->response); return 0; } |