summaryrefslogtreecommitdiff
path: root/source4/ntvfs/cifs
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-01-08 06:48:54 +0000
committerStefan Metzmacher <metze@samba.org>2004-01-08 06:48:54 +0000
commit8364fd2853ff4bb608157656878e05ca7984a2b9 (patch)
tree18ee6edb5ec175f50088f19f90341b0cc5b1d2a4 /source4/ntvfs/cifs
parent0172920e16a3af1711dbe2641027d1a0f9dffbe5 (diff)
downloadsamba-8364fd2853ff4bb608157656878e05ca7984a2b9.tar.gz
samba-8364fd2853ff4bb608157656878e05ca7984a2b9.tar.bz2
samba-8364fd2853ff4bb608157656878e05ca7984a2b9.zip
remove a useless assignment
metze (This used to be commit 189ef6e73d04c3c02309b51a5b73e322abb82cdb)
Diffstat (limited to 'source4/ntvfs/cifs')
-rw-r--r--source4/ntvfs/cifs/vfs_cifs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/cifs/vfs_cifs.c b/source4/ntvfs/cifs/vfs_cifs.c
index ba2d6e7d24..10fd56cb44 100644
--- a/source4/ntvfs/cifs/vfs_cifs.c
+++ b/source4/ntvfs/cifs/vfs_cifs.c
@@ -199,7 +199,7 @@ static void async_simple(struct cli_request *c_req)
#define ASYNC_RECV_TAIL(io, async_fn) do { \
if (!c_req) return NT_STATUS_UNSUCCESSFUL; \
{ \
- struct async_info *async = c_req->async.private; \
+ struct async_info *async; \
async = talloc(req->mem_ctx, sizeof(*async)); \
if (!async) return NT_STATUS_NO_MEMORY; \
async->parms = io; \