From a389274799a986b8fd83f57adddcd5ac5d176d4f Mon Sep 17 00:00:00 2001 From: David Gajewski Date: Mon, 2 Aug 2021 14:38:41 -0700 Subject: [PATCH] s3: VFS: solarisacl: Fix compile error (missed variable rename). BUG: https://bugzilla.samba.org/show_bug.cgi?id=14773 Signed-off-by: David Gajewski Reviewed-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 4a1d652e385..d31bda50233 100644 --- a/source3/modules/vfs_solarisacl.c +++ b/source3/modules/vfs_solarisacl.c @@ -204,7 +204,7 @@ int solarisacl_sys_acl_set_fd(vfs_handle_struct *handle, DEBUG(10, ("solarisacl_sys_acl_set_fd %s.\n", ((ret == 0) ? "succeeded" : "failed" ))); SAFE_FREE(solaris_acl); - SAFE_FREE(default_acl); + SAFE_FREE(other_acl); return ret; } -- 2.30.2