svn commit: samba r6629 - in branches/SAMBA_3_0/source/smbd: .

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


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

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

Log:
Fix stupid typo. Thanks Gunther.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/smbd/reply.c


Changeset:
Modified: branches/SAMBA_3_0/source/smbd/reply.c
===================================================================
--- branches/SAMBA_3_0/source/smbd/reply.c	2005-05-06 10:47:45 UTC (rev 6628)
+++ branches/SAMBA_3_0/source/smbd/reply.c	2005-05-06 10:47:52 UTC (rev 6629)
@@ -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