1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-01 04:58:35 +03:00

vfs: Use file_id_str_buf() in xattr_tdb_getattr()

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2019-09-03 16:14:28 +02:00 committed by Jeremy Allison
parent b09c216f5a
commit 5ca021bd85

View File

@ -181,9 +181,10 @@ ssize_t xattr_tdb_getattr(struct db_context *db_ctx,
ssize_t result = -1;
NTSTATUS status;
TALLOC_CTX *frame = talloc_stackframe();
struct file_id_buf buf;
DEBUG(10, ("xattr_tdb_getattr called for file %s, name %s\n",
file_id_string(frame, id), name));
DBG_DEBUG("xattr_tdb_getattr called for file %s, name %s\n",
file_id_str_buf(*id, &buf), name);
status = xattr_tdb_load_attrs(frame, db_ctx, id, &attribs);