diff options
author | Volker Lendecke <vl@samba.org> | 2013-04-12 14:09:12 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-04-26 15:17:22 -0700 |
commit | f52a3c3cd1ef2d6373819a7ba8c724fa9ca374f5 (patch) | |
tree | d3e5b087fb09fd7f79c2e615b1ec819b2f38babf /source3/include | |
parent | 3e7923d7afe7e47883dd7f7ec4e6a57490232105 (diff) | |
download | samba-f52a3c3cd1ef2d6373819a7ba8c724fa9ca374f5.tar.gz samba-f52a3c3cd1ef2d6373819a7ba8c724fa9ca374f5.tar.bz2 samba-f52a3c3cd1ef2d6373819a7ba8c724fa9ca374f5.zip |
smbd: Remove the unused fsp->pending_break_messages array
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/vfs.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/include/vfs.h b/source3/include/vfs.h index 6d9be77bfd..0e5b074867 100644 --- a/source3/include/vfs.h +++ b/source3/include/vfs.h @@ -152,6 +152,8 @@ connection_struct a pointer. */ /* Leave at 31 - not yet released. Add share_access to vuid_cache_entry. */ /* Leave at 31 - not yet released. add SMB_VFS_COPY_CHUNK() */ +/* Leave at 31 - not yet released. Remove the unused + fsp->pending_break_messages array */ #define SMB_VFS_INTERFACE_VERSION 31 @@ -224,9 +226,6 @@ typedef struct files_struct { struct lock_struct last_lock_failure; int current_lock_count; /* Count the number of outstanding locks and pending locks. */ - struct share_mode_entry *pending_break_messages; - int num_pending_break_messages; - bool can_lock; bool can_read; bool can_write; |