From d8b3fc8f14bdf324ab2139e4cf819cb4b7af1794 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 25 Oct 2007 13:32:56 +0200 Subject: [PATCH] Don't repeat fast-pathing... Michael --- source/smbd/posix_acls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/smbd/posix_acls.c b/source/smbd/posix_acls.c index 73c2e65c64a..5968e3a2d34 100644 --- a/source/smbd/posix_acls.c +++ b/source/smbd/posix_acls.c @@ -4270,7 +4270,7 @@ bool can_delete_file_in_directory(connection_struct *conn, const char *fname) /* now for ACL checks */ - return can_access_file(conn, dname, &sbuf, FILE_WRITE_DATA); + return can_access_file_acl(conn, dname, &sbuf, FILE_WRITE_DATA); } /**************************************************************************** -- 2.34.1