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

jra at samba.org jra at samba.org
Tue Mar 15 23:17:07 GMT 2005


Author: jra
Date: 2005-03-15 23:17:03 +0000 (Tue, 15 Mar 2005)
New Revision: 5812

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

Log:
We missed some RESOLVE_DFSPATH calls on pathnames for older calls.
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-03-15 23:16:50 UTC (rev 5811)
+++ branches/SAMBA_3_0/source/smbd/reply.c	2005-03-15 23:17:03 UTC (rev 5812)
@@ -701,6 +701,8 @@
 		return ERROR_NT(status);
 	}
 
+	RESOLVE_DFSPATH(fname, conn, inbuf, outbuf);
+  
 	unix_convert(fname,conn,0,&bad_path,&sbuf);
 	if (bad_path) {
 		END_PROFILE(SMBsetatr);
@@ -833,6 +835,9 @@
 		END_PROFILE(SMBsearch);
 		return ERROR_NT(nt_status);
 	}
+
+	RESOLVE_DFSPATH(path, conn, inbuf, outbuf);
+  
 	p++;
 	status_len = SVAL(p, 0);
 	p += 2;
@@ -4490,6 +4495,8 @@
 		return ERROR_NT(status);
 	}
   
+	RESOLVE_DFSPATH(newdir, conn, inbuf, outbuf);
+
 	if (strlen(newdir) == 0) {
 		ok = True;
 	} else {



More information about the samba-cvs mailing list