diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-08-08 09:15:17 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-08-08 17:32:26 +0200 |
commit | 1c76e99ae42f5ae0ca3f95832964739fb4e92584 (patch) | |
tree | ae18952226a2b57d81f23cc23094eda4c829e6e8 /source3/smbd | |
parent | 83d262088bf6d826209ebad839059a7b2ebc45d0 (diff) | |
download | samba-1c76e99ae42f5ae0ca3f95832964739fb4e92584.tar.gz samba-1c76e99ae42f5ae0ca3f95832964739fb4e92584.tar.bz2 samba-1c76e99ae42f5ae0ca3f95832964739fb4e92584.zip |
s3:smb2_server: s/i/idx in smbd_smb2_request_pending_queue()
metze
Autobuild-User(master): Stefan Metzmacher <metze@samba.org>
Autobuild-Date(master): Wed Aug 8 17:32:26 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/smb2_server.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/smbd/smb2_server.c b/source3/smbd/smb2_server.c index 5f4be28d34..52425474aa 100644 --- a/source3/smbd/smb2_server.c +++ b/source3/smbd/smb2_server.c @@ -1167,7 +1167,7 @@ NTSTATUS smbd_smb2_request_pending_queue(struct smbd_smb2_request *req, uint32_t defer_time) { NTSTATUS status; - int i = req->current_idx; + int idx = req->current_idx; struct timeval defer_endtime; uint8_t *outhdr = NULL; uint32_t flags; @@ -1191,7 +1191,7 @@ NTSTATUS smbd_smb2_request_pending_queue(struct smbd_smb2_request *req, return NT_STATUS_OK; } - if (req->in.vector_count > i + SMBD_SMB2_NUM_IOV_PER_REQ) { + if (req->in.vector_count > idx + SMBD_SMB2_NUM_IOV_PER_REQ) { /* * We're trying to go async in a compound * request chain. This is not allowed. @@ -1238,13 +1238,13 @@ NTSTATUS smbd_smb2_request_pending_queue(struct smbd_smb2_request *req, /* Re-arrange the in.vectors. */ memmove(&req->in.vector[req->current_idx], - &req->in.vector[i], + &req->in.vector[idx], sizeof(req->in.vector[0])*SMBD_SMB2_NUM_IOV_PER_REQ); req->in.vector_count = req->current_idx + SMBD_SMB2_NUM_IOV_PER_REQ; /* Re-arrange the out.vectors. */ memmove(&req->out.vector[req->current_idx], - &req->out.vector[i], + &req->out.vector[idx], sizeof(req->out.vector[0])*SMBD_SMB2_NUM_IOV_PER_REQ); req->out.vector_count = req->current_idx + SMBD_SMB2_NUM_IOV_PER_REQ; |