From 8364fd2853ff4bb608157656878e05ca7984a2b9 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 8 Jan 2004 06:48:54 +0000 Subject: remove a useless assignment metze (This used to be commit 189ef6e73d04c3c02309b51a5b73e322abb82cdb) --- source4/ntvfs/cifs/vfs_cifs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; \ -- cgit