svn commit: samba r20744 - in branches: SAMBA_3_0/source/libsmb SAMBA_3_0/source/profile SAMBA_3_0/source/utils SAMBA_3_0_24/source/libsmb SAMBA_3_0_24/source/profile SAMBA_3_0_24/source/utils

jra at samba.org jra at samba.org
Sat Jan 13 22:26:47 GMT 2007


Author: jra
Date: 2007-01-13 22:26:46 +0000 (Sat, 13 Jan 2007)
New Revision: 20744

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

Log:
Fix the build (I missed some chkpth -> checkpath renames).
Jeremy.

Modified:
   branches/SAMBA_3_0/source/libsmb/clifile.c
   branches/SAMBA_3_0/source/profile/profile.c
   branches/SAMBA_3_0/source/utils/status_profile.c
   branches/SAMBA_3_0_24/source/libsmb/clifile.c
   branches/SAMBA_3_0_24/source/profile/profile.c
   branches/SAMBA_3_0_24/source/utils/status_profile.c


Changeset:
Modified: branches/SAMBA_3_0/source/libsmb/clifile.c
===================================================================
--- branches/SAMBA_3_0/source/libsmb/clifile.c	2007-01-13 22:22:32 UTC (rev 20743)
+++ branches/SAMBA_3_0/source/libsmb/clifile.c	2007-01-13 22:26:46 UTC (rev 20744)
@@ -1372,7 +1372,7 @@
 	
 	memset(cli->outbuf,'\0',smb_size);
 	set_message(cli->outbuf,0,0,True);
-	SCVAL(cli->outbuf,smb_com,SMBchkpth);
+	SCVAL(cli->outbuf,smb_com,SMBcheckpath);
 	SSVAL(cli->outbuf,smb_tid,cli->cnum);
 	cli_setup_packet(cli);
 	p = smb_buf(cli->outbuf);

Modified: branches/SAMBA_3_0/source/profile/profile.c
===================================================================
--- branches/SAMBA_3_0/source/profile/profile.c	2007-01-13 22:22:32 UTC (rev 20743)
+++ branches/SAMBA_3_0/source/profile/profile.c	2007-01-13 22:26:46 UTC (rev 20744)
@@ -312,7 +312,7 @@
 	    "SMBunlock",	/* PR_VALUE_SMBUNLOCK */
 	    "SMBctemp",		/* PR_VALUE_SMBCTEMP */
 	    "SMBmknew",		/* PR_VALUE_SMBMKNEW */
-	    "SMBchkpth",	/* PR_VALUE_SMBCHKPTH */
+	    "SMBcheckpath",	/* PR_VALUE_SMBCHECKPATH */
 	    "SMBexit",		/* PR_VALUE_SMBEXIT */
 	    "SMBlseek",		/* PR_VALUE_SMBLSEEK */
 	    "SMBlockread",		/* PR_VALUE_SMBLOCKREAD */

Modified: branches/SAMBA_3_0/source/utils/status_profile.c
===================================================================
--- branches/SAMBA_3_0/source/utils/status_profile.c	2007-01-13 22:22:32 UTC (rev 20743)
+++ branches/SAMBA_3_0/source/utils/status_profile.c	2007-01-13 22:26:46 UTC (rev 20744)
@@ -181,8 +181,8 @@
 	d_printf("ctemp_time:                     %u\n", profile_p->SMBctemp_time);
 	d_printf("mknew_count:                    %u\n", profile_p->SMBmknew_count);
 	d_printf("mknew_time:                     %u\n", profile_p->SMBmknew_time);
-	d_printf("chkpth_count:                   %u\n", profile_p->SMBchkpth_count);
-	d_printf("chkpth_time:                    %u\n", profile_p->SMBchkpth_time);
+	d_printf("checkpath_count:                %u\n", profile_p->SMBcheckpath_count);
+	d_printf("checkpath_time:                 %u\n", profile_p->SMBcheckpath_time);
 	d_printf("exit_count:                     %u\n", profile_p->SMBexit_count);
 	d_printf("exit_time:                      %u\n", profile_p->SMBexit_time);
 	d_printf("lseek_count:                    %u\n", profile_p->SMBlseek_count);

Modified: branches/SAMBA_3_0_24/source/libsmb/clifile.c
===================================================================
--- branches/SAMBA_3_0_24/source/libsmb/clifile.c	2007-01-13 22:22:32 UTC (rev 20743)
+++ branches/SAMBA_3_0_24/source/libsmb/clifile.c	2007-01-13 22:26:46 UTC (rev 20744)
@@ -1381,7 +1381,7 @@
 	
 	memset(cli->outbuf,'\0',smb_size);
 	set_message(cli->outbuf,0,0,True);
-	SCVAL(cli->outbuf,smb_com,SMBchkpth);
+	SCVAL(cli->outbuf,smb_com,SMBcheckpath);
 	SSVAL(cli->outbuf,smb_tid,cli->cnum);
 	cli_setup_packet(cli);
 	p = smb_buf(cli->outbuf);

Modified: branches/SAMBA_3_0_24/source/profile/profile.c
===================================================================
--- branches/SAMBA_3_0_24/source/profile/profile.c	2007-01-13 22:22:32 UTC (rev 20743)
+++ branches/SAMBA_3_0_24/source/profile/profile.c	2007-01-13 22:26:46 UTC (rev 20744)
@@ -312,7 +312,7 @@
 	    "SMBunlock",	/* PR_VALUE_SMBUNLOCK */
 	    "SMBctemp",		/* PR_VALUE_SMBCTEMP */
 	    "SMBmknew",		/* PR_VALUE_SMBMKNEW */
-	    "SMBchkpth",	/* PR_VALUE_SMBCHKPTH */
+	    "SMBcheckpath",	/* PR_VALUE_SMBCHECKPATH */
 	    "SMBexit",		/* PR_VALUE_SMBEXIT */
 	    "SMBlseek",		/* PR_VALUE_SMBLSEEK */
 	    "SMBlockread",		/* PR_VALUE_SMBLOCKREAD */

Modified: branches/SAMBA_3_0_24/source/utils/status_profile.c
===================================================================
--- branches/SAMBA_3_0_24/source/utils/status_profile.c	2007-01-13 22:22:32 UTC (rev 20743)
+++ branches/SAMBA_3_0_24/source/utils/status_profile.c	2007-01-13 22:26:46 UTC (rev 20744)
@@ -181,8 +181,8 @@
 	d_printf("ctemp_time:                     %u\n", profile_p->SMBctemp_time);
 	d_printf("mknew_count:                    %u\n", profile_p->SMBmknew_count);
 	d_printf("mknew_time:                     %u\n", profile_p->SMBmknew_time);
-	d_printf("chkpth_count:                   %u\n", profile_p->SMBchkpth_count);
-	d_printf("chkpth_time:                    %u\n", profile_p->SMBchkpth_time);
+	d_printf("checkpath_count:                %u\n", profile_p->SMBcheckpath_count);
+	d_printf("checkpath_time:                 %u\n", profile_p->SMBcheckpath_time);
 	d_printf("exit_count:                     %u\n", profile_p->SMBexit_count);
 	d_printf("exit_time:                      %u\n", profile_p->SMBexit_time);
 	d_printf("lseek_count:                    %u\n", profile_p->SMBlseek_count);



More information about the samba-cvs mailing list