From 65169a43b321cd06d2f9474183ca8195c6182333 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 1 Dec 2008 14:26:58 -0800 Subject: [PATCH] s3:streams_xattr: fstat should do a stat on the base file The behavior of stat and fstat should be the same. metze --- source3/modules/vfs_streams_xattr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/modules/vfs_streams_xattr.c b/source3/modules/vfs_streams_xattr.c index 6530a1813bd..ecfc31970da 100644 --- a/source3/modules/vfs_streams_xattr.c +++ b/source3/modules/vfs_streams_xattr.c @@ -148,7 +148,7 @@ static int streams_xattr_fstat(vfs_handle_struct *handle, files_struct *fsp, return -1; } - if (SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf) == -1) { + if (SMB_VFS_STAT(handle->conn, io->base, sbuf) == -1) { return -1; } -- 2.34.1