diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-08-16 03:04:06 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-08-16 03:04:06 +0000 |
commit | f573a65b67e7a57586fec57845598e49b157ee0a (patch) | |
tree | 3d48290cafbadb22118ba4167f2c974eb51ff6c3 /source/locking | |
parent | 3daee29636dcb2d99a0e7c08179a098befae00dc (diff) | |
download | samba-f573a65b67e7a57586fec57845598e49b157ee0a.tar.gz samba-f573a65b67e7a57586fec57845598e49b157ee0a.tar.xz samba-f573a65b67e7a57586fec57845598e49b157ee0a.zip |
server.c: fixed a bug in close_file() with the new files.c handling code
bitmap.c: added bitmap hanlding code in preparation for increasing the
default max open files to several thousand
Diffstat (limited to 'source/locking')
-rw-r--r-- | source/locking/locking.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source/locking/locking.c b/source/locking/locking.c index 50c4af2265d..cdaeea6d7ed 100644 --- a/source/locking/locking.c +++ b/source/locking/locking.c @@ -494,7 +494,6 @@ int get_share_modes(connection_struct *conn, /******************************************************************* Del the share mode of a file. ********************************************************************/ - void del_share_mode(int token, files_struct *fsp) { share_ops->del_entry(token, fsp); @@ -503,7 +502,6 @@ void del_share_mode(int token, files_struct *fsp) /******************************************************************* Set the share mode of a file. Return False on fail, True on success. ********************************************************************/ - BOOL set_share_mode(int token, files_struct *fsp, uint16 port, uint16 op_type) { return share_ops->set_entry(token, fsp, port, op_type); |