From fbd8c61ff7a7c41d16c400ddb87ad290f4af167d Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 13 Dec 2004 10:48:21 +0000 Subject: r4173: - new t2open code, that can cope with "create with EAs". Many thanks to kukks on #samba-technical for the sniffs that allowed me to work this out - much simpler ntvfs open generic mapping code - added t2open create with EA torture test to RAW-OPEN test (This used to be commit a56d95ad89b4f32a05974c4fe9a816d67aa369e3) --- source4/smb_server/reply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/smb_server/reply.c') diff --git a/source4/smb_server/reply.c b/source4/smb_server/reply.c index 9fba5063b8..91423b05f8 100644 --- a/source4/smb_server/reply.c +++ b/source4/smb_server/reply.c @@ -430,7 +430,7 @@ void reply_open(struct smbsrv_request *req) REQ_TALLOC(oi, sizeof(*oi)); oi->openold.level = RAW_OPEN_OPEN; - oi->openold.in.flags = SVAL(req->in.vwv, VWV(0)); + oi->openold.in.open_mode = SVAL(req->in.vwv, VWV(0)); oi->openold.in.search_attrs = SVAL(req->in.vwv, VWV(1)); req_pull_ascii4(req, &oi->openold.in.fname, req->in.data, STR_TERMINATE); -- cgit