diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-03-19 11:11:37 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:15:37 -0500 |
commit | 49ecd176ee4bb2c4acffa0db548c33d6c90dcad7 (patch) | |
tree | be13e721c3981909403afa31b4cd213a7b53b5a9 /source3 | |
parent | 1267a3b297c188c789dda4e32c9961a87f771de9 (diff) | |
download | samba-49ecd176ee4bb2c4acffa0db548c33d6c90dcad7.tar.gz samba-49ecd176ee4bb2c4acffa0db548c33d6c90dcad7.tar.bz2 samba-49ecd176ee4bb2c4acffa0db548c33d6c90dcad7.zip |
r14559: Oplocks have changed, process_smb can be static again
(This used to be commit 19e9bc03f81d8d000b683cf5c5f478ba25ddeb0d)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/process.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 40d6818f3f..7ec08cb4a7 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -1072,11 +1072,10 @@ set. Ignoring max smbd restriction.\n")); } /**************************************************************************** - Process an smb from the client - split out from the smbd_process() code so - it can be used by the oplock break code. + Process an smb from the client ****************************************************************************/ -void process_smb(char *inbuf, char *outbuf) +static void process_smb(char *inbuf, char *outbuf) { static int trans_num; int msg_type = CVAL(inbuf,0); |