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

jra at samba.org jra at samba.org
Fri May 6 10:47:45 GMT 2005


Author: jra
Date: 2005-05-06 10:47:45 +0000 (Fri, 06 May 2005)
New Revision: 6628

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

Log:
Fix stupid typo. Thanks Gunther.
Jeremy.

Modified:
   trunk/source/smbd/reply.c


Changeset:
Modified: trunk/source/smbd/reply.c
===================================================================
--- trunk/source/smbd/reply.c	2005-05-06 10:08:34 UTC (rev 6627)
+++ trunk/source/smbd/reply.c	2005-05-06 10:47:45 UTC (rev 6628)
@@ -1753,7 +1753,7 @@
 	 */
 	
 	if (!rc && mangle_is_mangled(mask,SNUM(conn)))
-		mangle_check_cache( mask, sizeof(pstring)-1 );
+		mangle_check_cache( mask, sizeof(pstring)-1, SNUM(conn));
 	
 	if (!has_wild) {
 		pstrcat(directory,"/");
@@ -4055,7 +4055,7 @@
 	 */
 
 	if (!rc && mangle_is_mangled(mask,SNUM(conn)))
-		mangle_check_cache( mask, sizeof(pstring)-1 );
+		mangle_check_cache( mask, sizeof(pstring)-1, SNUM(conn));
 
 	has_wild = ms_has_wild(mask);
 
@@ -4536,7 +4536,7 @@
 	 */
 
 	if (!rc && mangle_is_mangled(mask, SNUM(conn)))
-		mangle_check_cache( mask, sizeof(pstring)-1 );
+		mangle_check_cache( mask, sizeof(pstring)-1, SNUM(conn));
 
 	has_wild = ms_has_wild(mask);
 



More information about the samba-cvs mailing list