diff options
-rw-r--r-- | source3/libsmb/clifile.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/libsmb/clifile.c b/source3/libsmb/clifile.c index 43218bfe70..a248a46845 100644 --- a/source3/libsmb/clifile.c +++ b/source3/libsmb/clifile.c @@ -2293,8 +2293,7 @@ NTSTATUS cli_openx(struct cli_state *cli, const char *fname, int flags, goto fail; } - if (!tevent_req_poll(req, ev)) { - status = map_nt_error_from_unix(errno); + if (!tevent_req_poll_ntstatus(req, ev, &status)) { goto fail; } |