From 2df2d1b67f9bf2907f452688b2c54b73052cfb49 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 2 Nov 2004 04:51:57 +0000 Subject: r3461: another place where "open" was used as a structure element (This used to be commit 1087ea830e7aead86d54a1836512e88554afc919) --- source4/smb_server/reply.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source4/smb_server/reply.c') diff --git a/source4/smb_server/reply.c b/source4/smb_server/reply.c index 1ffd55bf3f..8c20b2bb72 100644 --- a/source4/smb_server/reply.c +++ b/source4/smb_server/reply.c @@ -443,7 +443,7 @@ void reply_open(struct smbsrv_request *req) req->async_states->private_data = oi; /* call backend */ - req->async_states->status = ntvfs_open(req, oi); + req->async_states->status = ntvfs_openfile(req, oi); REQ_ASYNC_TAIL; } @@ -519,7 +519,7 @@ void reply_open_and_X(struct smbsrv_request *req) req->async_states->private_data = oi; /* call the backend */ - req->async_states->status = ntvfs_open(req, oi); + req->async_states->status = ntvfs_openfile(req, oi); REQ_ASYNC_TAIL; } @@ -570,7 +570,7 @@ void reply_mknew(struct smbsrv_request *req) req->async_states->private_data = oi; /* call the backend */ - req->async_states->status = ntvfs_open(req, oi); + req->async_states->status = ntvfs_openfile(req, oi); REQ_ASYNC_TAIL; } @@ -624,7 +624,7 @@ void reply_ctemp(struct smbsrv_request *req) req->async_states->private_data = oi; /* call the backend */ - req->async_states->status = ntvfs_open(req, oi); + req->async_states->status = ntvfs_openfile(req, oi); REQ_ASYNC_TAIL; } @@ -1423,7 +1423,7 @@ void reply_printopen(struct smbsrv_request *req) req->async_states->private_data = oi; /* call backend */ - req->async_states->status = ntvfs_open(req, oi); + req->async_states->status = ntvfs_openfile(req, oi); REQ_ASYNC_TAIL; } @@ -2300,7 +2300,7 @@ void reply_ntcreate_and_X(struct smbsrv_request *req) req->async_states->private_data = io; /* call the backend */ - req->async_states->status = ntvfs_open(req, io); + req->async_states->status = ntvfs_openfile(req, io); REQ_ASYNC_TAIL; } -- cgit