From d7d1bb9444ab89c2fd922a8120eb5b21d06d0c54 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 28 Jun 2012 10:02:01 +0200 Subject: s3:smb2_create: add usefull DEBUG() message All calls which take an file handle have the same, so we should also log it, when we create a handle. metze Autobuild-User(master): Stefan Metzmacher Autobuild-Date(master): Thu Jun 28 12:41:49 CEST 2012 on sn-devel-104 --- source3/smbd/smb2_create.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source3') diff --git a/source3/smbd/smb2_create.c b/source3/smbd/smb2_create.c index f540377dcc..b729ebfecd 100644 --- a/source3/smbd/smb2_create.c +++ b/source3/smbd/smb2_create.c @@ -826,6 +826,9 @@ static struct tevent_req *smbd_smb2_create_send(TALLOC_CTX *mem_ctx, state->out_file_id_volatile = result->fnum; state->out_context_blobs = out_context_blobs; + DEBUG(10,("smbd_smb2_create_send: %s - %s\n", + fsp_str_dbg(result), fsp_fnum_dbg(result))); + tevent_req_done(req); return tevent_req_post(req, ev); } -- cgit