r14174: fix typos
authorStefan Metzmacher <metze@samba.org>
Fri, 10 Mar 2006 21:38:07 +0000 (21:38 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:56:58 +0000 (13:56 -0500)
metze
(This used to be commit 29240bae4488749b3f8a2b49bccad1601d1aa184)

source4/libcli/raw/rawsetfileinfo.c
source4/ntvfs/posix/pvfs_setfileinfo.c

index 5779cf33fb1cd77f85ea232b191ba33ea8f7006e..73fcd8280264b0c02cb4cd3c68b07e35dd368e3a 100644 (file)
@@ -283,7 +283,7 @@ static struct smbcli_request *smb_raw_setattr_send(struct smbcli_tree *tree,
        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 @@ struct smbcli_request *smb_raw_setpathinfo_send(struct smbcli_tree *tree,
        /* 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);
 
index db0314964258d2e7d01619071008a72b61e85378..5a6643bdd4a489799f2a6279bde58ebb1adf2cf2 100644 (file)
@@ -435,7 +435,7 @@ NTSTATUS pvfs_setpathinfo(struct ntvfs_module_context *ntvfs,
        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;