]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
Revert "s3:smbd: set req->smb2req->compat_chain_fsp in file_fsp()"
authorStefan Metzmacher <metze@samba.org>
Sat, 9 Jun 2012 09:11:26 +0000 (11:11 +0200)
committerStefan Metzmacher <metze@samba.org>
Sun, 10 Jun 2012 16:04:21 +0000 (18:04 +0200)
This reverts commit c2716a7d5ccf78f9716b703c22e6cf4d4f179656.

This is not needed anymore, as we have file_fsp_smb2() now.

metze

Autobuild-User(master): Stefan Metzmacher <metze@samba.org>
Autobuild-Date(master): Sun Jun 10 18:04:21 CEST 2012 on sn-devel-104

source3/smbd/files.c

index 50ce1b50cab9555feb69cad533d880f3a9ad6edc..97db348a0194e4be41fbddde61b6eecc83003d03 100644 (file)
@@ -574,9 +574,6 @@ files_struct *file_fsp(struct smb_request *req, uint16 fid)
        fsp = file_fnum(req->sconn, fid);
        if (fsp != NULL) {
                req->chain_fsp = fsp;
-               if (req->smb2req != NULL) {
-                       req->smb2req->compat_chain_fsp = fsp;
-               }
        }
        return fsp;
 }