diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-06-05 21:04:37 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-06-05 21:05:40 +0200 |
commit | b25227a1776fa59baafdd7f71f5f93cda17409fd (patch) | |
tree | e88053634605a2bfe795248df57be1711381c562 /source3/smbd | |
parent | 140fe782a9f249f58c93e56753e6e8646783d19b (diff) | |
download | samba-b25227a1776fa59baafdd7f71f5f93cda17409fd.tar.gz samba-b25227a1776fa59baafdd7f71f5f93cda17409fd.tar.xz samba-b25227a1776fa59baafdd7f71f5f93cda17409fd.zip |
s3:smbd: fix the build in smb2_ioctl.c
metze
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/smb2_ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |