diff options
author | Stefan Metzmacher <metze@samba.org> | 2014-09-16 06:55:39 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2014-09-19 09:15:12 +0200 |
commit | d8cffad8e00e7c6bd6727e00b247bc5443ea053d (patch) | |
tree | 62c0df6f95b1ec17803719edbd720b4b39e3e519 /source3/smbd/reply.c | |
parent | 333707fa376cc27476d1fef2d291c6ae6482b1d6 (diff) | |
download | samba-d8cffad8e00e7c6bd6727e00b247bc5443ea053d.tar.gz samba-d8cffad8e00e7c6bd6727e00b247bc5443ea053d.tar.xz samba-d8cffad8e00e7c6bd6727e00b247bc5443ea053d.zip |
s3:smbd: pass smbXsrv_connection to open_was_deferred()
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/smbd/reply.c')
-rw-r--r-- | source3/smbd/reply.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 0d1fc23670..21be320bb6 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -2012,7 +2012,7 @@ void reply_open(struct smb_request *req) &info); /* pinfo */ if (!NT_STATUS_IS_OK(status)) { - if (open_was_deferred(req->sconn, req->mid)) { + if (open_was_deferred(req->xconn, req->mid)) { /* We have re-scheduled this call. */ goto out; } @@ -2181,7 +2181,7 @@ void reply_open_and_X(struct smb_request *req) &smb_action); /* pinfo */ if (!NT_STATUS_IS_OK(status)) { - if (open_was_deferred(req->sconn, req->mid)) { + if (open_was_deferred(req->xconn, req->mid)) { /* We have re-scheduled this call. */ goto out; } @@ -2429,7 +2429,7 @@ void reply_mknew(struct smb_request *req) NULL); /* pinfo */ if (!NT_STATUS_IS_OK(status)) { - if (open_was_deferred(req->sconn, req->mid)) { + if (open_was_deferred(req->xconn, req->mid)) { /* We have re-scheduled this call. */ goto out; } @@ -2563,7 +2563,7 @@ void reply_ctemp(struct smb_request *req) } if (!NT_STATUS_IS_OK(status)) { - if (open_was_deferred(req->sconn, req->mid)) { + if (open_was_deferred(req->xconn, req->mid)) { /* We have re-scheduled this call. */ goto out; } @@ -3052,7 +3052,7 @@ void reply_unlink(struct smb_request *req) status = unlink_internals(conn, req, dirtype, smb_fname, path_contains_wcard); if (!NT_STATUS_IS_OK(status)) { - if (open_was_deferred(req->sconn, req->mid)) { + if (open_was_deferred(req->xconn, req->mid)) { /* We have re-scheduled this call. */ goto out; } @@ -6046,7 +6046,7 @@ void reply_rmdir(struct smb_request *req) &info); /* pinfo */ if (!NT_STATUS_IS_OK(status)) { - if (open_was_deferred(req->sconn, req->mid)) { + if (open_was_deferred(req->xconn, req->mid)) { /* We have re-scheduled this call. */ goto out; } @@ -7121,7 +7121,7 @@ void reply_mv(struct smb_request *req) attrs, False, src_has_wcard, dest_has_wcard, DELETE_ACCESS); if (!NT_STATUS_IS_OK(status)) { - if (open_was_deferred(req->sconn, req->mid)) { + if (open_was_deferred(req->xconn, req->mid)) { /* We have re-scheduled this call. */ goto out; } |