1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +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:
Volker Lendecke 2019-09-09 16:30:57 +02:00 committed by Jeremy Allison
parent bf2bf5b144
commit fd691fbc94

View File

@ -2417,6 +2417,7 @@ static void defer_open(struct share_mode_lock *lck,
struct defer_open_state *watch_state;
struct tevent_req *watch_req;
struct timeval_buf tvbuf1, tvbuf2;
struct file_id_buf fbuf;
bool ok;
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),
req->mid,
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);
if (open_rec == NULL) {