summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorTimur I. Bakeyev <timur@iXsystems.com>2018-05-13 12:18:21 +0800
committerRalph Boehme <slow@samba.org>2018-05-16 21:29:24 +0200
commit010cddae6c46d6ece67b80d4f6697a793f9b5350 (patch)
tree51f6315cf4d700f169d09e722b21a6c707b9a093 /source3
parentd3cbcbd5c0b22ce8ef368f2278fa4421c91f7502 (diff)
downloadsamba-010cddae6c46d6ece67b80d4f6697a793f9b5350.tar.gz
Convert affected by previous commit lines from DEBUG(10,..) to DBG_DEBUG().
Signed-off-by: Timur I. Bakeyev <timur@iXsystems.com> Reviewed-by: Ralph Boehme <slow@samba.org> Reviewed-by: Martin Schwenke <martin@meltin.net> Autobuild-User(master): Ralph Böhme <slow@samba.org> Autobuild-Date(master): Wed May 16 21:29:24 CEST 2018 on sn-devel-144
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/open.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c
index 3adea77902f..61a42e29a10 100644
--- a/source3/smbd/open.c
+++ b/source3/smbd/open.c
@@ -5047,7 +5047,7 @@ static NTSTATUS create_file_unixpath(connection_struct *conn,
files_struct *fsp = NULL;
NTSTATUS status;
- DEBUG(10,("create_file_unixpath: access_mask = 0x%x "
+ DBG_DEBUG("create_file_unixpath: access_mask = 0x%x "
"file_attributes = 0x%x, share_access = 0x%x, "
"create_disposition = 0x%x create_options = 0x%x "
"oplock_request = 0x%x private_flags = 0x%x "
@@ -5060,7 +5060,7 @@ static NTSTATUS create_file_unixpath(connection_struct *conn,
(unsigned int)create_options,
(unsigned int)oplock_request,
(unsigned int)private_flags,
- ea_list, sd, smb_fname_str_dbg(smb_fname)));
+ ea_list, sd, smb_fname_str_dbg(smb_fname));
if (create_options & FILE_OPEN_BY_FILE_ID) {
status = NT_STATUS_NOT_SUPPORTED;
@@ -5589,7 +5589,7 @@ NTSTATUS create_file_default(connection_struct *conn,
NTSTATUS status;
bool stream_name = false;
- DEBUG(10,("create_file: access_mask = 0x%x "
+ DBG_DEBUG("create_file: access_mask = 0x%x "
"file_attributes = 0x%x, share_access = 0x%x, "
"create_disposition = 0x%x create_options = 0x%x "
"oplock_request = 0x%x "
@@ -5604,7 +5604,7 @@ NTSTATUS create_file_default(connection_struct *conn,
(unsigned int)oplock_request,
(unsigned int)private_flags,
(unsigned int)root_dir_fid,
- ea_list, sd, smb_fname_str_dbg(smb_fname)));
+ ea_list, sd, smb_fname_str_dbg(smb_fname));
/*
* Calculate the filename from the root_dir_if if necessary.