mirror of
https://github.com/samba-team/samba.git
synced 2025-03-11 16:58:40 +03:00
smbd: Use file_id_str_buf() in defer_open()
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
bf2bf5b144
commit
fd691fbc94
@ -2417,6 +2417,7 @@ static void defer_open(struct share_mode_lock *lck,
|
|||||||
struct defer_open_state *watch_state;
|
struct defer_open_state *watch_state;
|
||||||
struct tevent_req *watch_req;
|
struct tevent_req *watch_req;
|
||||||
struct timeval_buf tvbuf1, tvbuf2;
|
struct timeval_buf tvbuf1, tvbuf2;
|
||||||
|
struct file_id_buf fbuf;
|
||||||
bool ok;
|
bool ok;
|
||||||
|
|
||||||
abs_timeout = timeval_sum(&req->request_time, &timeout);
|
abs_timeout = timeval_sum(&req->request_time, &timeout);
|
||||||
@ -2427,7 +2428,7 @@ static void defer_open(struct share_mode_lock *lck,
|
|||||||
timeval_str_buf(&abs_timeout, false, true, &tvbuf2),
|
timeval_str_buf(&abs_timeout, false, true, &tvbuf2),
|
||||||
req->mid,
|
req->mid,
|
||||||
delayed_for_oplocks ? "yes" : "no",
|
delayed_for_oplocks ? "yes" : "no",
|
||||||
file_id_string_tos(&id));
|
file_id_str_buf(id, &fbuf));
|
||||||
|
|
||||||
open_rec = talloc_zero(NULL, struct deferred_open_record);
|
open_rec = talloc_zero(NULL, struct deferred_open_record);
|
||||||
if (open_rec == NULL) {
|
if (open_rec == NULL) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user