diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-08-06 12:53:05 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-08-19 22:12:42 +0200 |
commit | f00a3bfee7577c9ef82cb03b0580dccf0c7bc463 (patch) | |
tree | fa6bb9d2c0375f03154bbc5d4ba735e730fd57a8 /source3/include | |
parent | e621b7a52ee597cef9fbcd7b7af337e8749c4dca (diff) | |
download | samba-f00a3bfee7577c9ef82cb03b0580dccf0c7bc463.tar.gz samba-f00a3bfee7577c9ef82cb03b0580dccf0c7bc463.tar.bz2 samba-f00a3bfee7577c9ef82cb03b0580dccf0c7bc463.zip |
s3:smbd: store a dirptr on the files_struct for SMB2 Query Directory
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 28bd60a670..4cd090bc7d 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -459,6 +459,8 @@ typedef struct files_struct { struct notify_change_buf *notify; struct files_struct *base_fsp; /* placeholder for delete on close */ + + struct dptr_struct *dptr; } files_struct; #include "ntquotas.h" |