From: Stefan Metzmacher Date: Mon, 14 May 2012 07:58:56 +0000 (+0200) Subject: s3:lib/util: use map_nt_error_from_unix_common() in tevent_req_poll_ntstatus() X-Git-Tag: samba-4.0.0alpha21~166 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=05e4f247297f9a379607b290b41ab905bbfab4de;p=thirdparty%2Fsamba.git s3:lib/util: use map_nt_error_from_unix_common() in tevent_req_poll_ntstatus() metze --- diff --git a/source3/lib/util.c b/source3/lib/util.c index 7913ce9ee78..22c2eb288cc 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; }