r3461: another place where "open" was used as a structure element
[kai/samba.git] / source4 / smb_server / reply.c
index 1ffd55bf3f66ad0ea82a67c8d098c6e8e80e5223..8c20b2bb72088d0e3e58c629e846a30af48642e9 100644 (file)
@@ -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;
 }