summaryrefslogtreecommitdiff
path: root/source3/smbd/reply.c
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2009-07-01 16:15:52 -0700
committerTim Prouty <tprouty@samba.org>2009-07-06 15:38:41 -0700
commit0f6e10886f3f778fe301ee981873f29d295d39c5 (patch)
treef8c2b4d88d7f20793f2c8444d6ea3fbf102534f3 /source3/smbd/reply.c
parentde3246eae2b1234cc7fcb7d4dd6c6863ab9d31b3 (diff)
downloadsamba-0f6e10886f3f778fe301ee981873f29d295d39c5.tar.gz
samba-0f6e10886f3f778fe301ee981873f29d295d39c5.tar.bz2
samba-0f6e10886f3f778fe301ee981873f29d295d39c5.zip
s3: Change some filename_convert to pass in NULL for char **fname argument
Diffstat (limited to 'source3/smbd/reply.c')
-rw-r--r--source3/smbd/reply.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c
index d7eaaa8a2c..e37cdcb6b4 100644
--- a/source3/smbd/reply.c
+++ b/source3/smbd/reply.c
@@ -994,7 +994,7 @@ void reply_checkpath(struct smb_request *req)
req->flags2 & FLAGS2_DFS_PATHNAMES,
name,
&smb_fname,
- &name);
+ NULL);
if (!NT_STATUS_IS_OK(status)) {
if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
@@ -2095,7 +2095,7 @@ void reply_mknew(struct smb_request *req)
req->flags2 & FLAGS2_DFS_PATHNAMES,
fname,
&smb_fname,
- &fname);
+ NULL);
if (!NT_STATUS_IS_OK(status)) {
if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
reply_botherror(req,
@@ -2109,7 +2109,8 @@ void reply_mknew(struct smb_request *req)
if (fattr & aVOLID) {
DEBUG(0,("Attempt to create file (%s) with volid set - "
- "please report this\n", fname));
+ "please report this\n",
+ smb_fname_str_dbg(smb_fname)));
}
if(req->cmd == SMBmknew) {
@@ -2227,7 +2228,7 @@ void reply_ctemp(struct smb_request *req)
req->flags2 & FLAGS2_DFS_PATHNAMES,
fname,
&smb_fname,
- &fname);
+ NULL);
if (!NT_STATUS_IS_OK(status)) {
if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
@@ -5197,7 +5198,7 @@ void reply_mkdir(struct smb_request *req)
req->flags2 & FLAGS2_DFS_PATHNAMES,
directory,
&smb_dname,
- &directory);
+ NULL);
if (!NT_STATUS_IS_OK(status)) {
if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,