svn commit: samba r23996 - in branches: SAMBA_3_2/source/smbd SAMBA_3_2_0/source/smbd

vlendec at samba.org vlendec at samba.org
Mon Jul 23 08:20:50 GMT 2007


Author: vlendec
Date: 2007-07-23 08:20:44 +0000 (Mon, 23 Jul 2007)
New Revision: 23996

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

Log:
One more const
Modified:
   branches/SAMBA_3_2/source/smbd/files.c
   branches/SAMBA_3_2_0/source/smbd/files.c


Changeset:
Modified: branches/SAMBA_3_2/source/smbd/files.c
===================================================================
--- branches/SAMBA_3_2/source/smbd/files.c	2007-07-23 02:56:51 UTC (rev 23995)
+++ branches/SAMBA_3_2/source/smbd/files.c	2007-07-23 08:20:44 UTC (rev 23996)
@@ -487,7 +487,7 @@
  Get an fsp from a packet given the offset of a 16 bit fnum.
 ****************************************************************************/
 
-files_struct *file_fsp(char *buf, int where)
+files_struct *file_fsp(const char *buf, int where)
 {
 	files_struct *fsp;
 

Modified: branches/SAMBA_3_2_0/source/smbd/files.c
===================================================================
--- branches/SAMBA_3_2_0/source/smbd/files.c	2007-07-23 02:56:51 UTC (rev 23995)
+++ branches/SAMBA_3_2_0/source/smbd/files.c	2007-07-23 08:20:44 UTC (rev 23996)
@@ -487,7 +487,7 @@
  Get an fsp from a packet given the offset of a 16 bit fnum.
 ****************************************************************************/
 
-files_struct *file_fsp(char *buf, int where)
+files_struct *file_fsp(const char *buf, int where)
 {
 	files_struct *fsp;
 



More information about the samba-cvs mailing list