From: Volker Lendecke Date: Fri, 2 Dec 2022 10:55:31 +0000 (+0100) Subject: smbd: Print the file name in reparse point functions X-Git-Tag: talloc-2.4.0~158 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=918a71f2a89b6ea4b323cb547ee91e9ce41a9810;p=thirdparty%2Fsamba.git smbd: Print the file name in reparse point functions Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/util_reparse.c b/source3/modules/util_reparse.c index fe259b50646..3e7030e7357 100644 --- a/source3/modules/util_reparse.c +++ b/source3/modules/util_reparse.c @@ -27,7 +27,7 @@ NTSTATUS fsctl_get_reparse_point(struct files_struct *fsp, uint32_t max_out_len, uint32_t *out_len) { - DBG_DEBUG("Called on %s\n", fsp_fnum_dbg(fsp)); + DBG_DEBUG("Called on %s\n", fsp_str_dbg(fsp)); return NT_STATUS_NOT_A_REPARSE_POINT; } @@ -36,7 +36,7 @@ NTSTATUS fsctl_set_reparse_point(struct files_struct *fsp, const uint8_t *in_data, uint32_t in_len) { - DBG_DEBUG("Called on %s\n", fsp_fnum_dbg(fsp)); + DBG_DEBUG("Called on %s\n", fsp_str_dbg(fsp)); return NT_STATUS_NOT_A_REPARSE_POINT; } @@ -45,6 +45,6 @@ NTSTATUS fsctl_del_reparse_point(struct files_struct *fsp, const uint8_t *in_data, uint32_t in_len) { - DBG_DEBUG("Called on %s\n", fsp_fnum_dbg(fsp)); + DBG_DEBUG("Called on %s\n", fsp_str_dbg(fsp)); return NT_STATUS_NOT_A_REPARSE_POINT; }