From b25227a1776fa59baafdd7f71f5f93cda17409fd Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 5 Jun 2009 21:04:37 +0200 Subject: s3:smbd: fix the build in smb2_ioctl.c metze --- source3/smbd/smb2_ioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/smbd/smb2_ioctl.c b/source3/smbd/smb2_ioctl.c index 4a00e9d562..bc69ba3309 100644 --- a/source3/smbd/smb2_ioctl.c +++ b/source3/smbd/smb2_ioctl.c @@ -311,7 +311,7 @@ static struct tevent_req *smbd_smb2_ioctl_send(TALLOC_CTX *mem_ctx, } if (overflow) { - tevent_req_nterror(STATUS_BUFFER_OVERFLOW); + tevent_req_nterror(req, STATUS_BUFFER_OVERFLOW); } else { tevent_req_done(req); } -- cgit