summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/oplock.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/source3/smbd/oplock.c b/source3/smbd/oplock.c
index 97b1731584e..b073c0d04ca 100644
--- a/source3/smbd/oplock.c
+++ b/source3/smbd/oplock.c
@@ -744,12 +744,14 @@ static files_struct *initial_break_processing(
unsigned long file_id)
{
files_struct *fsp = NULL;
+ struct file_id_buf idbuf;
- DEBUG(3, ("initial_break_processing: called for %s/%u\n"
- "Current oplocks_open (exclusive = %d, levelII = %d)\n",
- file_id_string_tos(&id), (int)file_id,
- sconn->oplocks.exclusive_open,
- sconn->oplocks.level_II_open));
+ DBG_NOTICE("called for %s/%u\n"
+ "Current oplocks_open (exclusive = %d, levelII = %d)\n",
+ file_id_str_buf(id, &idbuf),
+ (int)file_id,
+ sconn->oplocks.exclusive_open,
+ sconn->oplocks.level_II_open);
/*
* We need to search the file open table for the
@@ -761,9 +763,11 @@ static files_struct *initial_break_processing(
if(fsp == NULL) {
/* The file could have been closed in the meantime - return success. */
- DEBUG(3, ("initial_break_processing: cannot find open file "
- "with file_id %s gen_id = %lu, allowing break to "
- "succeed.\n", file_id_string_tos(&id), file_id));
+ DBG_NOTICE("cannot find open file "
+ "with file_id %s gen_id = %lu, allowing break to "
+ "succeed.\n",
+ file_id_str_buf(id, &idbuf),
+ file_id);
return NULL;
}
@@ -782,7 +786,7 @@ static files_struct *initial_break_processing(
"has no oplock. "
"Allowing break to succeed regardless.\n",
fsp_str_dbg(fsp),
- file_id_string_tos(&id),
+ file_id_str_buf(id, &idbuf),
fsp->fh->gen_id);
return NULL;
}