svn commit: samba r6630 - in trunk/source/smbd: .

jra at samba.org jra at samba.org
Fri May 6 10:55:33 GMT 2005


Author: jra
Date: 2005-05-06 10:55:33 +0000 (Fri, 06 May 2005)
New Revision: 6630

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

Log:
More typos. Sorry.
Jeremy.

Modified:
   trunk/source/smbd/filename.c
   trunk/source/smbd/trans2.c


Changeset:
Modified: trunk/source/smbd/filename.c
===================================================================
--- trunk/source/smbd/filename.c	2005-05-06 10:47:52 UTC (rev 6629)
+++ trunk/source/smbd/filename.c	2005-05-06 10:55:33 UTC (rev 6630)
@@ -318,7 +318,7 @@
 				 */
 
 				if (mangle_is_mangled(start, SNUM(conn))) {
-					mangle_check_cache( start, sizeof(pstring) - 1 - (start - name) );
+					mangle_check_cache( start, sizeof(pstring) - 1 - (start - name), SNUM(conn));
 				}
 
 				DEBUG(5,("New file %s\n",start));
@@ -447,7 +447,7 @@
 	 * (JRA).
 	 */
 	if (mangled)
-		mangled = !mangle_check_cache( name, maxlength );
+		mangled = !mangle_check_cache( name, maxlength, SNUM(conn));
 
 	/* open the directory */
 	if (!(cur_dir = OpenDir(conn, path))) {

Modified: trunk/source/smbd/trans2.c
===================================================================
--- trunk/source/smbd/trans2.c	2005-05-06 10:47:52 UTC (rev 6629)
+++ trunk/source/smbd/trans2.c	2005-05-06 10:55:33 UTC (rev 6630)
@@ -2008,7 +2008,7 @@
 		 */
 
 		if (mangle_is_mangled(resume_name, SNUM(conn))) {
-			mangle_check_cache(resume_name, sizeof(resume_name)-1);
+			mangle_check_cache(resume_name, sizeof(resume_name)-1, SNUM(conn));
 		}
 
 		/*



More information about the samba-cvs mailing list