From 3d577fdc14cdadb04dafb64072a90aaf714da809 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 24 Aug 2016 10:32:32 -0700 Subject: [PATCH] s3: vfs: Fix compilation error on Solaris. BUG:https://bugzilla.samba.org/show_bug.cgi?id=12174 Signed-off-by: Jeremy Allison --- source3/modules/vfs_solarisacl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/modules/vfs_solarisacl.c b/source3/modules/vfs_solarisacl.c index b421016..6367794 100644 --- a/source3/modules/vfs_solarisacl.c +++ b/source3/modules/vfs_solarisacl.c @@ -174,7 +174,7 @@ int solarisacl_sys_acl_set_file(vfs_handle_struct *handle, * For a Windows acl mapped call on a symlink, we want to follow * it. */ - ret = SMB_VFS_STAT(conn, &smb_fname); + ret = SMB_VFS_STAT(handle->conn, &smb_fname); if (ret != 0) { DEBUG(10, ("Error in stat call: %s\n", strerror(errno))); goto done; -- 2.8.0.rc3.226.g39d4020