svn commit: samba r14559 - branches/SAMBA_3_0/source/smbd trunk/source/smbd

vlendec at samba.org vlendec at samba.org
Sun Mar 19 11:11:39 GMT 2006


Author: vlendec
Date: 2006-03-19 11:11:37 +0000 (Sun, 19 Mar 2006)
New Revision: 14559

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=14559

Log:
Oplocks have changed, process_smb can be static again
Modified:
   branches/SAMBA_3_0/source/smbd/process.c
   trunk/source/smbd/process.c


Changeset:
Modified: branches/SAMBA_3_0/source/smbd/process.c
===================================================================
--- branches/SAMBA_3_0/source/smbd/process.c	2006-03-19 03:39:48 UTC (rev 14558)
+++ branches/SAMBA_3_0/source/smbd/process.c	2006-03-19 11:11:37 UTC (rev 14559)
@@ -1072,11 +1072,10 @@
 }
 
 /****************************************************************************
- 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);

Modified: trunk/source/smbd/process.c
===================================================================
--- trunk/source/smbd/process.c	2006-03-19 03:39:48 UTC (rev 14558)
+++ trunk/source/smbd/process.c	2006-03-19 11:11:37 UTC (rev 14559)
@@ -1072,11 +1072,10 @@
 }
 
 /****************************************************************************
- 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);



More information about the samba-cvs mailing list