1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

s3:lib/util: use map_nt_error_from_unix_common() in tevent_req_poll_ntstatus()

metze
This commit is contained in:
Stefan Metzmacher 2012-05-14 09:58:56 +02:00
parent b4f2184a29
commit 05e4f24729

View File

@ -2268,7 +2268,7 @@ bool tevent_req_poll_ntstatus(struct tevent_req *req,
{
bool ret = tevent_req_poll(req, ev);
if (!ret) {
*status = map_nt_error_from_unix(errno);
*status = map_nt_error_from_unix_common(errno);
}
return ret;
}