summaryrefslogtreecommitdiff
path: root/source3/lib/util.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2012-05-14 09:58:56 +0200
committerStefan Metzmacher <metze@samba.org>2012-05-14 15:12:34 +0200
commit05e4f247297f9a379607b290b41ab905bbfab4de (patch)
treed0f2592eb68ade48f76091d1cab52e48b58b8d0e /source3/lib/util.c
parentb4f2184a29d6ca41aacbaff6f499982895b74fd6 (diff)
downloadsamba-05e4f247297f9a379607b290b41ab905bbfab4de.tar.gz
samba-05e4f247297f9a379607b290b41ab905bbfab4de.tar.bz2
samba-05e4f247297f9a379607b290b41ab905bbfab4de.zip
s3:lib/util: use map_nt_error_from_unix_common() in tevent_req_poll_ntstatus()
metze
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r--source3/lib/util.c2
1 files changed, 1 insertions, 1 deletions
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;
}