From 05e4f247297f9a379607b290b41ab905bbfab4de Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 14 May 2012 09:58:56 +0200 Subject: s3:lib/util: use map_nt_error_from_unix_common() in tevent_req_poll_ntstatus() metze --- source3/lib/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib/util.c') diff --git a/source3/lib/util.c b/source3/lib/util.c index 7913ce9ee7..22c2eb288c 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -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; } -- cgit