Author: metze Date: 2006-03-10 21:38:07 +0000 (Fri, 10 Mar 2006) New Revision: 14174
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=14174 Log: fix typos metze Modified: branches/SAMBA_4_0/source/libcli/raw/rawsetfileinfo.c branches/SAMBA_4_0/source/ntvfs/posix/pvfs_setfileinfo.c Changeset: Modified: branches/SAMBA_4_0/source/libcli/raw/rawsetfileinfo.c =================================================================== --- branches/SAMBA_4_0/source/libcli/raw/rawsetfileinfo.c 2006-03-10 20:49:20 UTC (rev 14173) +++ branches/SAMBA_4_0/source/libcli/raw/rawsetfileinfo.c 2006-03-10 21:38:07 UTC (rev 14174) @@ -283,7 +283,7 @@ raw_push_dos_date3(tree->session->transport, req->out.vwv, VWV(1), parms->setattr.in.write_time); memset(req->out.vwv + VWV(3), 0, 10); /* reserved */ - smbcli_req_append_ascii4(req, parms->setattr.file.fname, STR_TERMINATE); + smbcli_req_append_ascii4(req, parms->setattr.file.path, STR_TERMINATE); smbcli_req_append_ascii4(req, "", STR_TERMINATE); if (!smbcli_request_send(req)) { @@ -399,7 +399,7 @@ /* send request and process the output */ req = smb_raw_setpathinfo_blob_send(tree, mem_ctx, - parms->generic.file.fname, + parms->generic.file.path, parms->generic.level, &blob); Modified: branches/SAMBA_4_0/source/ntvfs/posix/pvfs_setfileinfo.c =================================================================== --- branches/SAMBA_4_0/source/ntvfs/posix/pvfs_setfileinfo.c 2006-03-10 20:49:20 UTC (rev 14173) +++ branches/SAMBA_4_0/source/ntvfs/posix/pvfs_setfileinfo.c 2006-03-10 21:38:07 UTC (rev 14174) @@ -435,7 +435,7 @@ uint32_t access_needed; /* resolve the cifs name to a posix name */ - status = pvfs_resolve_name(pvfs, req, info->generic.file.fname, + status = pvfs_resolve_name(pvfs, req, info->generic.file.path, PVFS_RESOLVE_STREAMS, &name); if (!NT_STATUS_IS_OK(status)) { return status;
