diff options
author | Volker Lendecke <vl@samba.org> | 2008-10-25 12:09:58 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-10-25 12:09:58 +0200 |
commit | ff211be69681c8dbbd7b6364fafb7aa6e8b5a1f5 (patch) | |
tree | 500da80f1cddc59cf58bc5be99035cffbea3fd7c /source3/rpc_server | |
parent | d6afe7c61a7ba36253321bbdac7b65fc925cacde (diff) | |
download | samba-ff211be69681c8dbbd7b6364fafb7aa6e8b5a1f5.tar.gz samba-ff211be69681c8dbbd7b6364fafb7aa6e8b5a1f5.tar.bz2 samba-ff211be69681c8dbbd7b6364fafb7aa6e8b5a1f5.zip |
Remove "pipe_handle_offset" -- pipes now use "struct files_struct"
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_pipe_hnd.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/source3/rpc_server/srv_pipe_hnd.c b/source3/rpc_server/srv_pipe_hnd.c index c8037e6e43..aaa355790d 100644 --- a/source3/rpc_server/srv_pipe_hnd.c +++ b/source3/rpc_server/srv_pipe_hnd.c @@ -55,22 +55,6 @@ pipes_struct *get_next_internal_pipe(pipes_struct *p) return p->next; } -/* this must be larger than the sum of the open files and directories */ -static int pipe_handle_offset; - -/**************************************************************************** - Set the pipe_handle_offset. Called from smbd/files.c -****************************************************************************/ - -void set_pipe_handle_offset(int max_open_files) -{ - if(max_open_files < 0x7000) { - pipe_handle_offset = 0x7000; - } else { - pipe_handle_offset = max_open_files + 10; /* For safety. :-) */ - } -} - /**************************************************************************** Initialise pipe handle states. ****************************************************************************/ |